リファレンスガイド> TDV SQLのキーワードと構文> CREATE TABLE
 
CREATE TABLE
データベースに新しいテーブルを作成します。
構文
CREATE TABLE table_name (
column1 datatype,
column2 datatype,
column3 datatype,
....
);