1、从末尾删除数据后

alter table 表名 auto_increment = n   

id从n开始变化

2、从开头、中间删除数据后

alter table 表名 drop id;

alter table 表名 add id int not null primary key auto_increment first;

 

Logo

更多推荐