QuestionQ3
Executing queries using Databricks SQL and Databricks SQL WarehousesA data analyst executes the following command:
INSERT INTO stakeholders.suppliers TABLE stakeholders.new_suppliers;
What happens when this command is executed?
- A The suppliers table now contains both the data it had before the command was run and the data from the new_suppliers table, and any duplicate data is deleted.
- B The command fails because it is written incorrectly.
- C The suppliers table now contains both the data it had before the command was run and the data from the new_suppliers table, including any duplicate data.
- D The suppliers table now contains the data from the new_suppliers table, and the new_suppliers table now contains the data from the suppliers table.
- E The suppliers table now contains only the data from the new_suppliers table.
Community Discussion