CREATE TABLE
Grammar syntax
CREATE [ OR REPLACE ] [ TEMP | TEMPORARY ] TABLE [ IF NOT EXISTS ]
table_name
[(
column | constraint_definition[, ...]
)]
[DEFAULT COLLATE collate_specification]
[PARTITION BY partition_expression]
[CLUSTER BY clustering_column_list]
[OPTIONS(table_option_list)]
[AS query_statement]Sample Source Patterns
DEFAULT COLLATE
Input Code:
Output Code:
Labels table option
Input Code:
Output Code:
Description table option
Input Code:
Output Code:
Description table option
Input Code:
Output Code:
Known Issues
Input Code:
Output Code:
Input Code:
Output Code:
Related EWIs
Last updated
