方法一:原来的id取消自增和主键,只用于表格的排序。
新插入一个id2,自然会根据自增重新排列。删除id,id2改id即可。
alter table 你的表名字 drop 你的表的主键;
alter table 你的表的名字 add 你的表的主键 int not null primary key auto_increment first;
alter table table_name drop id;
alter table table_name add id int not null primary key auto_increment first;
使用这种方法不影响表中数据,从1递增开始递增
方法二:清空表,并重置id
truncate table table_name;
一次性删除所有数据,不可恢复,无法回滚
方法三:文章来源:https://www.toymoban.com/news/detail-524060.html
delete from table_name;
alter table table_name auto_increment= 1;
方法四:文章来源地址https://www.toymoban.com/news/detail-524060.html
ALTER TABLE table_name AUTO_INCREMENT = 1;
到了这里,关于【MySql】如何重置MySQL数据库表中的id的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!