Updated on 2026-08-13 GMT+08:00

CREATE TABLE

Function

Reads column data from the source table, creates a table, and writes data to the created table.

Syntax Format Supported for Lineage Parsing

CREATE TABLE {schema_name}.{table_name1} AS select_statement...

Example Statement

CREATE TABLE mySchema.table1(col1, col2) AS SELECT col1, col2 from mySchema.table2;