CREATE TABLE CLONE
Grammar syntax
CREATE TABLE [ IF NOT EXISTS ]
destination_table_name
CLONE source_table_name [FOR SYSTEM_TIME AS OF time_expression]
...
[OPTIONS(table_option_list)]Sample Source Patterns
FOR SYSTEM TIME AS OF
Input Code:
CREATE TABLE my_clone_table
CLONE some_table_name2
FOR SYSTEM_TIME AS OF TIMESTAMP "2025-01-01 00:00:00 UTC";Outpur Code:
Note
Last updated
