首先我们需要取消id的自增和主键
下列代码以water表中的id列为例
alter table water
modify id int not null;
alter table water
drop primary key;
然后重新生成id列
set @i=0;
update water set water.id=(@i:=@i+1);
下一步就是重新设置为主键+自增
alter table water
add primary key (id);
alter table water
modify id int auto_increment;
成功解决