A Delta Lake table was established using the following query: ```sql CREATE TABLE prod.sales_by_store USING DELTA LOCATION 'abfss://sales@datalake.dfs.core.windows.net/prod/sales_by_store' AS SELECT * FROM prod.sales a INNER JOIN prod.store b ON a.store_id = b.store_id; ``` If a workspace administrator executes the command `DROP TABLE prod.sales_by_store`, what is the expected outcome? | Databricks Certified Data Engineer - Professional Quiz - LeetQuiz