For at ændre værdien af AUTO_INCREMENT-tælleren, der skal bruges til nye rækker, skal du gøre dette:
ALTER TABLE `table_name` AUTO_INCREMENT = 1;
For at opdatere alle dine 31 tabeller kan du bruge dette php-script:
<?php
$tables = array('table1','table2','tableX'); //continue here
foreach($tables as $update)
{
mysql_query("ALTER TABLE `".$update."` AUTO_INCREMENT = 1;");
}
?>