0

My mysql table auto increment value are like 83321, right now this value is 4110234543.

How can reset my old auto increment value?

Thanks in Advance

  • 1
    possible duplicate of [mysql reset auto increment](http://stackoverflow.com/questions/8923114/mysql-reset-auto-increment) – Mahmoud Gamal May 23 '13 at 10:27

1 Answers1

5

You can reset the AUTO_INCREMENT by using the following

ALTER TABLE table_name AUTO_INCREMENT = 83321
PSR
  • 39,804
  • 41
  • 111
  • 151