
Ultimate access to all questions.
A data engineering team has created a Delta Lake table named customers_clone using the query CREATE TABLE customers_clone AS SELECT * FROM customers. If a data engineer attempts to drop this table with the command DROP TABLE customers_clone, what will be the outcome?*_
A
An error will occur because the table is a deep clone of the customers table.
B
Only the table's metadata will be removed from the catalog, leaving the data files intact in storage.
C
Both the table's metadata and the associated data files will be permanently deleted.
D
The table will remain until a VACUUM command is executed.
E
An error will occur because the table is a shallow clone of the customers table.