Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The item_category_id column is auto increment value in the mysql table.

I need to delete all the values & next insertion should start from 1. If i delete all values & try to insert a new row then it starts with some 30's & 40's.

  item_category_id  item_category_name
    1                     qqq
    25                    ccc
    32                    vvv
    29                    bb
    4                     bbb
    31                    hhh
    34                    mmm
    33                    rrr
share|improve this question

3 Answers

up vote 5 down vote accepted
ALTER TABLE TABLENAME AUTO_INCREMENT = 1

Instead of using Delete if you use Truncate that will remove data and will also reset autoincrement.

TRUNCATE TABLE TABLENAME
share|improve this answer

If you're using PHPmyAdmin to manage your database, you could simply

  • Select YOUR_TABLE
  • Navigate to More
  • Then, navigate to Operations
  • There you will find an AUTO_INCREMENT field that you can alter:

How to change <code>AUTO_INCREMENT</code> value

share|improve this answer

Reset the auto increment value for a MySQL table

ALTER TABLE `users` AUTO_INCREMENT = 1;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.