ID INT AUTO_INCREMENT PRIMARY KEY,
However, I would also recommend the following changes:
CREATE TABLE Data
(
ID INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
Firstname VARCHAR(30) NOT NULL,
Lastname VARCHAR(30) NOT NULL,
Age TINYINT UNSIGNED NOT NULL
)
(Change the NOT NULL to NULL on any field for which null values are to be allowed. Change the "(30)" values to whatever max length you want to impose on those name columns.)