أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.
The create table statement is used to create a new table. Here is the format of a simple create table statement:
create table "tablename" ("column1" "data type", "column2" "data type", "column3" "data type");Format of create table if you were to use optional constraints:
create table "tablename" ("column1" "data type" [constraint], "column2" "data type" [constraint], "column3" "data type" [constraint]); [ ] = optionalNote: You may have as many columns as you'd like, and the constraints are optional.