Certified Data Engineer Associate Exam QuestionsBrowse all questions from this exam

Certified Data Engineer Associate 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?

Show Answer
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

4 comments
Sign in to comment
meow_akkOption: A
Oct 22, 2023

Ans A : check the correct syntax for insert into

AnnelijnOption: A
Jan 9, 2024

A is correct

azure_bimonsterOption: A
Jan 20, 2024

A is correct because syntax is correct

benni_aleOption: A
Apr 29, 2024

A is correct