问题
In my table tbphotos I had a 100 records. I then deleted all the records and now that I want to restart data entry I see that my primary key doesn't start from 1, but it starts from 101,
Is there any way to reset the primary key?
I am using MySQL administrator account.
回答1:
alter table foo AUTO_INCREMENT = 1
回答2:
You can reset the auto-increment like this:
ALTER TABLE tablename AUTO_INCREMENT = 1
But if you are relying on the autoincrement values, your program is very fragile. If you need to assign consecutive numbers to your records for your program to work you should create a separate column for that, and not use a database auto-increment ID for this purpose.
回答3:
If you use TRUNC instead of manually deleting records, your primary key will be reset.
回答4:
The code below is best if you have some data in the database already but want to reset the ID from 1 without deleting the data. Copy and run in SQL command
ALTER TABLE members DROP ID;
ALTER TABLE members AUTO_INCREMENT = 1;
ALTER TABLE members ADD ID int UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST;
回答5:
This is the best script for reset auto increment:
ALTER TABLE foo MODIFY your column increment int (11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1;
来源:https://stackoverflow.com/questions/1809893/how-to-reset-the-primary-key-of-a-table