Auto-increment allows a unique number to be generated automatically when a new record is inserted into a table.
CREATE TABLE Person (
FirstName varchar(255) UNIQUE,
LastName varchar(255) NOT NULL UNIQUE,
Id int not null auto_increment
);
ALTER TABLE Person auto_increment=100;