IF NOT EXISTS
Create table option
Description
Sample Source
BigQuery (Input Code)
CREATE TABLE IF NOT EXISTS table1 (
col1 integer
);Snowflake (Output Code)
CREATE TABLE IF NOT EXISTS table1 (
col1 integer
); Last updated
Was this helpful?