CREATE TABLE COPY
Grammar syntax
CREATE [ OR REPLACE ] TABLE [ IF NOT EXISTS ] table_name
COPY source_table_name
...
[OPTIONS(table_option_list)]Sample Source Patterns
General case
Input Code
CREATE TABLE newtable
COPY sourceTable;Output Code:
Note
Last updated
