Ga als volgt te werk om de waarde van de AUTO_INCREMENT-teller voor nieuwe rijen te wijzigen:
ALTER TABLE `table_name` AUTO_INCREMENT = 1;
Om al je 31 tabellen bij te werken, kun je dit php-script gebruiken:
<?php
$tables = array('table1','table2','tableX'); //continue here
foreach($tables as $update)
{
mysql_query("ALTER TABLE `".$update."` AUTO_INCREMENT = 1;");
}
?>