Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

Databricks Exam Databricks-Certified-Data-Engineer-Associate Topic 4 Question 27 Discussion

Actual exam question for Databricks's Databricks-Certified-Data-Engineer-Associate exam
Question #: 27
Topic #: 4
[All Databricks-Certified-Data-Engineer-Associate Questions]

A data engineer has been given a new record of data:

id STRING = 'a1'

rank INTEGER = 6

rating FLOAT = 9.4

Which of the following SQL commands can be used to append the new record to an existing Delta table my_table?

Show Suggested Answer Hide Answer

Contribute your Thoughts:

I agree, A is the right choice. The other options don't seem to be valid SQL commands for appending a new record.
upvoted 0 times
...
Ligia
23 hours ago
The correct answer is A) INSERT INTO my_table VALUES ('a1', 6, 9.4). It's a straightforward INSERT statement to append a new record to the existing Delta table.
upvoted 0 times
...
Shonda
12 days ago
I'm not sure, but I think option C) INSERT VALUES ( 'a1' , 6, 9.4) INTO my_table is also a possibility.
upvoted 0 times
...
Earnestine
14 days ago
I agree with Miles, because INSERT INTO is used to add new records to a table.
upvoted 0 times
...
Miles
15 days ago
I think the correct answer is A) INSERT INTO my_table VALUES ('a1', 6, 9.4)
upvoted 0 times
...

Save Cancel