MySQL tutorial: AUTO_INCREMENT [EN]
top of page
CerebroSQL

MySQL: 

AUTO_INCREMENT

The AUTO_INCREMENT attribute can be used to generate a unique identity
for new rows:

Example

CREATE TABLE animals (
id MEDIUMINT NOT NULL AUTO_INCREMENT,
name CHAR(30) NOT NULL,
PRIMARY KEY (id)
);

INSERT INTO animals (name) VALUES
('dog'),('cat'),('penguin'),
('lax'),('whale'),('ostrich');

SELECT * FROM animals;

bottom of page