Answers for "auto increment sql primary key script"

SQL
10

how to auto increment in sql

CREATE TABLE Persons (
    Personid int NOT NULL AUTO_INCREMENT,
    LastName varchar(255) NOT NULL,
    FirstName varchar(255),
    Age int,
    PRIMARY KEY (Personid)
);
INSERT INTO Persons (FirstName,LastName)
VALUES ('Lars','Monsen');
Posted by: Guest on December-04-2020
0

sql create tabel with primary key auto_increment code

CREATE TABLE books (
  id              INT           NOT NULL    IDENTITY    PRIMARY KEY,
  title           VARCHAR(100)  NOT NULL,
  primary_author  VARCHAR(100),
);
Posted by: Guest on September-14-2021

Code answers related to "auto increment sql primary key script"

Code answers related to "SQL"

Browse Popular Code Answers by Language