create table sql server
CREATE TABLE schema_name.table_name (
ID_column INT NOT NULL IDENTITY(1,1) PRIMARY KEY,
column_1 data_type NOT NULL,
column_2 data_type
);
create table sql server
CREATE TABLE schema_name.table_name (
ID_column INT NOT NULL IDENTITY(1,1) PRIMARY KEY,
column_1 data_type NOT NULL,
column_2 data_type
);
Create table Statement Syntax in SQL Server
--****************** For More help, visit NAYCode.com
CREATE TABLE [table_name]
(
Col1 [datatype],
Col2 [datatype]
CONSTRAINT [PK_Name] PRIMARY KEY CLUSTERED
(
[Col1] ASC
)
)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us