A Delta Lake table named `production.saledata_by_user` was initially created with the following query: ```sql CREATE TABLE production.saledata_by_user USING DELTA LOCATION "/mnt/production/saledata_by_store" ``` Recognizing a typographical error in the table name, the developer executed the following command: ```sql ALTER TABLE production.saledata_by_user RENAME TO production.saledata_by_store ``` What is the outcome of running this second command? | Databricks Certified Data Engineer - Professional Quiz - LeetQuiz