
Explanation:
CREATE OR REPLACE TABLE guarantees that the table is created with the new schema. If a table with the same name already exists, it gets replaced (overwritten). Thus, the command will execute successfully regardless of the table's prior existence.
Ultimate access to all questions.
A
INSERT INTO table_name
B
MERGE INTO table_name
C
CREATE OR REPLACE TABLE table_name
D
DROP TABLE table_name
No comments yet.