Ad Code

How to reset AUTO_INCREMENT in MySQL?

You can reset the counter with:
ALTER TABLE tablename AUTO_INCREMENT = 1
For InnoDB you cannot set the auto_increment value lower or equal to the highest current index.
  
SET @num := 0;
UPDATE your_table SET id = @num := (@num+1); ALTER TABLE your_table AUTO_INCREMENT =1;
 

 

Post a Comment

0 Comments