mysql create table primary key auto_increment code example

Example 1: mysql set id auto increment

ALTER TABLE users AUTO_INCREMENT=1001;

Example 2: create a table with an id in mysql

CREATE TABLE DemoT (
    Personid int NOT NULL AUTO_INCREMENT,
    LastName varchar(111) NOT NULL,
    FirstName varchar(111),
    Age int,
    PRIMARY KEY (Personid)
);

Example 3: id increment ms sql server

CREATE TABLE Persons (
    Personid int IDENTITY(1,1) PRIMARY KEY,
    LastName varchar(255) NOT NULL,
    FirstName varchar(255),
    Age int
);

Example 4: create table primary key auto increment mysql

define primary key auto increment

Tags:

Sql Example