
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
Which command can be used to write data into a Delta table while avoiding the writing of duplicate records?
A
DROP
B
INSERT
C
MERGE
D
APPEND
Explanation:
The MERGE command (also known as UPSERT) is specifically designed to write data into a Delta table while avoiding duplicate records. It performs the following operations:
This allows you to:
Other options:
The MERGE command is essential for maintaining data integrity and preventing duplicate records in Delta tables.