Answers for "create table in sql with primary key and auto_increment"

SQL
5

create table with primary key auto increment in sql

CREATE TABLE table_name (
    id INT NOT NULL IDENTITY(1, 1),
    name NVARCHAR (100) NULL,
    school NVARCHAR (100) NULL,
    PRIMARY KEY (ID)
);
Posted by: Guest on March-03-2021

Code answers related to "create table in sql with primary key and auto_increment"

Code answers related to "SQL"

Browse Popular Code Answers by Language