Complete the code to create a zero-copy clone of a table named 'sales_data'.
CREATE TABLE sales_data_clone CLONE [1];The CLONE keyword is used to create a zero-copy clone of the existing table sales_data.
Complete the code to clone a database named 'analytics_db' using zero-copy cloning.
CREATE DATABASE analytics_db_clone CLONE [1];The CLONE keyword clones the original database analytics_db without copying data.
Fix the error in the code to clone a schema named 'public' from database 'sales_db'.
CREATE SCHEMA sales_db_clone.public CLONE [1];The source schema must be fully qualified with the original database and schema name: sales_db.public.
Fill both blanks to clone a table named 'orders' from schema 'sales' in database 'retail_db' into a new schema 'sales_clone'.
CREATE TABLE sales_clone.orders CLONE [1].[2].orders;
The clone source must specify the original database and schema: retail_db.sales.orders.
Fill all three blanks to clone a zero-copy clone of a stage named 'data_stage' from database 'prod_db' and schema 'public' into a new stage in schema 'dev_schema'.
CREATE STAGE dev_schema.data_stage_clone CLONE [1].[2].[3];
The clone source must be fully qualified with database, schema, and stage name: prod_db.public.data_stage.