CREATE VIEW
In this section, you will find information about BigQuery Create Views and their Snowflake equivalent.
Grammar Syntax
CREATE [ OR REPLACE ] VIEW [ IF NOT EXISTS ] view_name [(view_column_name_list)] [OPTIONS(view_option_list)] AS query_expression view_column_name_list := view_column[, ...] view_column := column_name [OPTIONS(view_column_option_list)]
Simple case
BigQuery
CREATE OR REPLACE VIEW View1
AS SELECT * from table1;Snowflake
With View Column Name Option
BigQuery
Snowflake
With Options clause
BigQuery
Snowflake
Description Option
BigQuery
Snowflake
Labels Option
BigQuery
Snowflake
Related EWIs
Last updated
Was this helpful?