首先我们需要取消id的自增和主键
alter
table
water
modify
id
int
not
null
;
drop
primary
key
set
@i=0;
update
water.id=(@i:=@i+1);
add
(id);
auto_increment;
成功解决!