Reference Guide > TDV SQL Keywords and Syntax > CREATE TABLE
 
CREATE TABLE
Creates a new table in the database.
Syntax
CREATE TABLE table_name (
column1 datatype,
column2 datatype,
column3 datatype,
....
);