11.07.2018, 07:49
If you modify the value of auto increment in a production server, it will result in error for duplicate primary key if you attempt to create new houses and keep the old ones. If `id` is really not a primary key, it should have been.
Use it in a CAREFUL and CAUTIOUS way only if you want to delete all the data from the table and start over.
Use it in a CAREFUL and CAUTIOUS way only if you want to delete all the data from the table and start over.
pawn Код:
ALTER TABLE `house` AUTO_INCREMENT=1;

