mysql 對數據的自增ID重新進行排序


創建表格時添加:

create table table1(id int auto_increment primary key,...)



創建表格后添加:

刪除原有主鍵:

ALTER TABLE `table_name` DROP `id`;

alter table table1 add id int auto_increment primary key 自增字段,一定要設置為primary key.


例子

alter table tablename drop column id;
alter table tablename add id mediumint(8) not null primary key auto_increment first;



方法二:

alter table tablename auto_increment=0

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM