A data engineer creates a Delta Lake table with the following SQL command: ```sql CREATE TABLE dev.my_table USING DELTA LOCATION "/mnt/dev/my_table"; ``` Later, the engineer decides to rename the table for shared use by executing: ```sql ALTER TABLE dev.my_table RENAME TO dev.our_table; ``` What is the result of running this `ALTER TABLE` command? | Databricks Certified Data Engineer - Professional Quiz - LeetQuiz