Answers for "how to make new table in sql"

SQL
3

SQL create a new table

CREATE TABLE table_name
(
column1 TYPE [COLUMN CONSTRAINTS],
column2 TYPE [COLUMN CONSTRAINTS],
column3 TYPE [COLUMN CONSTRAINTS],
[TABLE CONSTRAINTS...]
);
Posted by: Guest on January-09-2021
2

how to create a table in sql

CREATE TABLE Persons
(
PersonID int,
LastName varchar(255),
FirstName varchar(255),
Address varchar(255), 
City varchar(255) 
);
Posted by: Guest on May-25-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language