A Delta Lake table named `store_wise_sales` was created in the `test` schema using the following SQL statement: ```sql CREATE TABLE test.store_wise_sales AS ( SELECT * FROM test.sales a INNER JOIN test.store b ON a.store_id = b.store_id ); ``` If a workspace administrator executes the command `DROP TABLE test.store_wise_sales`, what will be the outcome? | Databricks Certified Data Engineer - Professional Quiz - LeetQuiz