如何重置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开始递增

posted @ 2022-05-10 16:31  卷心菜的奇妙历险  阅读(207)  评论(0编辑  收藏  举报