OPTIONS CLAUSE
Create table option
Description
Sample Source
BigQuery (Input Code)
CREATE TABLE table1
(
col1 INT,
col2 DATE
)
OPTIONS(
expiration_timestamp=TIMESTAMP "2025-01-01 00:00:00 UTC",
partition_expiration_days=1,
description="a table that expires in 2025, with each partition living for 24 hours",
labels=[("org_unit", "development")]
);Snowflake (Output Code)
Related EWIs
Last updated
Was this helpful?