Answers for "how to create a table in sql server"

SQL
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
0

create table in microsoft sql server

CREATE TABLE [database_name.][schema_name.]table_name (
    pk_column data_type PRIMARY KEY,
    column_1 data_type NOT NULL,
    column_2 data_type,
    ...,
    table_constraints
);
Posted by: Guest on September-14-2021

Code answers related to "how to create a table in sql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language