Exam Certified Data Engineer Associate All QuestionsBrowse all questions from this exam
Question 50

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?

    Correct Answer: A

    The correct SQL command to append a new record to an existing Delta table is 'INSERT INTO my_table VALUES ('a1', 6, 9.4)'. This command uses proper syntax for inserting a row into a table, providing the correct values for each column specified in the question.

Discussion
meow_akkOption: A

Ans A : check the correct syntax for insert into

azure_bimonsterOption: A

A is correct because syntax is correct

AnnelijnOption: A

A is correct

benni_aleOption: A

A is correct