Answers for "db table create sql"

SQL
4

create db table

CREATE TABLE table_name (
    column1 datatype,
    column2 datatype,
    column3 datatype,
   ....
);
Posted by: Guest on September-05-2020
0

create sql table

column_name data_type(length) [not null] [default value] [auto_increment] column_constraint;
Code language: SQL (Structured Query Language) (sql)
Posted by: Guest on December-06-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language