TEMP/TEMPORARY
Create table option
Description
Sample Source
BigQuery (Input Code)
CREATE TEMP TABLE table1 (
col1 integer
);
CREATE TEMPORARY TABLE table2 (
col1 integer
);Snowflake (Output Code)
CREATE TEMP TABLE table1 (
col1 integer
);
CREATE TEMPORARY TABLE table2 (
col1 integer
);Last updated
Was this helpful?