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