hiexam
databricks · Certified-Data-Engineer-Associate · Q426 · multiple_choice · topic_1

A data engineer has been given a new record of data: id STRING = 'a1' rank INTEGER = 6 rating FLOAT = 9.4 Which SQL c…

A data engineer has been given a new record of data: id STRING = 'a1' rank INTEGER = 6 rating FLOAT = 9.4 Which SQL commands can be used to append the new record to an existing Delta table my_table?
  • A.INSERT INTO my_table VALUES ('a1', 6, 9.4)
  • B.INSERT VALUES ('a1', 6, 9.4) INTO my_table
  • C.UPDATE my_table VALUES ('a1', 6, 9.4)
  • D.UPDATE VALUES ('a1', 6, 9.4) my_table
Explanation
Repeated, correct.

Reference: examtopics_top_comment

Practice with progress tracking

Sign in to track wrong answers, get spaced-repetition reminders, and run timed exam mode.