MySql数据库,删除一条数据后,新增数据id不连续解决方法

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;

 

你可能感兴趣的:(MySQL)