Detailed description of the auto-incrementing primary key ID re-sorting method in Mysql

Source: Internet
Author: User

Generally, if we use the ID auto-incrementing primary key and delete the key, we cannot simply rank the ID again. Here are some operation tips.

The IDS of the auto-incrementing primary keys in Mysql database tables are messy and need to be rearranged.

Principle: Delete the original auto-increment ID and create a new auto-increment ID.

1. Delete the original primary key:

The Code is as follows: Copy code

Alter table 'table _ name' DROP 'id ';

2. Add the new primary key field:

The Code is as follows: Copy code

Alter table 'table _ name' add'id' MEDIUMINT (8) not null first;

3. Set the new primary key:

The Code is as follows: Copy code

Alter table 'table _ name' modify column 'id' MEDIUMINT (8) not null AUTO_INCREMENT, add primary key (id );


Another way is to use php to re-create a data record. When deleting data, you only need to add the delete mark. If you do not delete the data record, you can.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.