开发者

How to reset the primary key of a table?

开发者 https://www.devze.com 2022-12-12 22:00 出处:网络
In my table tbphotos I had a 100 records. I then deleted all the records and now that I want to restart data开发者_如何学JAVA entry I see that my primary key doesn\'t start from 1, but it starts from

In my table tbphotos I had a 100 records. I then deleted all the records and now that I want to restart data开发者_如何学JAVA 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.


alter table foo AUTO_INCREMENT = 1


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.


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;


If you use TRUNC instead of manually deleting records, your primary key will be reset.


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;

0

精彩评论

暂无评论...
验证码 换一张
取 消