
Ultimate access to all questions.
Consider a scenario where you have a Delta Lake table named 'sales_data' that has been updated multiple times over the past year. You need to identify the user who performed the last update on this table. How would you achieve this using Databricks SQL or PySpark?_
A
Use the DESCRIBE HISTORY command to view the table history and identify the user.
B
Use the SHOW CREATE TABLE command to view the table creation details.
C
Use the SELECT * FROM sales_data command to inspect the data.*_
D
Use the VACUUM command to clean up the table and view the history.