el_barto >
http://www.mysql.com/doc/C/R/CREATE_TABLE.html ang. \"auto_increment\":
\"the column is set to value+1, where value is the largest value for the column currently in the table.\"
En gammel værdi vil altså ikke blive genbrugt, så længe der er en række med en højere id.
Desuden:
\"If you delete the row containing the maximum value for an AUTO_INCREMENT column, the value will be reused with an ISAM, or BDB table but not with a MyISAM or InnoDB table.\"
Og MyISAM har været standard-typen længe.
Dvs. med standard tabel-typen er der kun én måde at genbruge et gammelt id:
\"If you delete all rows in the table with DELETE FROM table_name (without a WHERE) in AUTOCOMMIT mode, the sequence starts over for all table types.\"