Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam Certified Data Engineer Associate All Questions

View all questions & answers for the Certified Data Engineer Associate exam

Exam Certified Data Engineer Associate topic 1 question 50 discussion

Actual exam question from Databricks's Certified Data Engineer Associate
Question #: 50
Topic #: 1
[All 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?

  • A. INSERT INTO my_table VALUES ('a1', 6, 9.4)
  • B. my_table UNION VALUES ('a1', 6, 9.4)
  • C. INSERT VALUES ( 'a1' , 6, 9.4) INTO my_table
  • D. UPDATE my_table VALUES ('a1', 6, 9.4)
  • E. UPDATE VALUES ('a1', 6, 9.4) my_table
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
80370eb
3 months, 2 weeks ago
Selected Answer: A
insert into table comment
upvoted 1 times
...
benni_ale
7 months ago
Selected Answer: A
A is correct
upvoted 1 times
...
azure_bimonster
10 months, 1 week ago
Selected Answer: A
A is correct because syntax is correct
upvoted 2 times
...
Annelijn
10 months, 3 weeks ago
Selected Answer: A
A is correct
upvoted 2 times
...
meow_akk
1 year, 1 month ago
Ans A : check the correct syntax for insert into
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...