如何重置MySQL数据库表中的id
alter table 你的表名字 drop 你的表的主键; alter table 你的表的名字 add 你的表的主键 int not null primary key auto_increment first;
alter table tb_details drop id; alter table tb_details add id int not null primary key auto_increment first;
使用这种办法不影响表中的数据,从1开始递增