CREATE TABLE (
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
...
PRIMARY KEY(id),
... );
Main notes:
Starts with 1 and increments by 1 automatically when you fail to specify it on INSERT, or specify it as NULL.
The ids are always distinct from each other, but...
Do not make a...