如何重置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开始递增
学习时的痛苦是暂时的 未学到的痛苦是终生的
作者:卷心菜的奇妙历险
本文版权归作者和博客园共有,遵循 CC 4.0 BY-SA 版权协议,欢迎转载 转载请附上原文出处链接和本声明,否则保留追究法律责任的权利。