方法一:
alter table tablename drop column id;
alter table tablename add id mediumint(8) not null primary key auto_increment first;
ps:这种方法能将凌乱的id编号重新排序;所有id重新编号(可用)
PS:不改变现有的编号,但是重新设置了编号,当下次添加入数据时,编号从设置的值开始,此例中新纪录id从0开始。(可用)
方法二:
alter table tablename auto_increment=0
ps:没有看到变化,莫非方法过时了?
方法三:
truncate tblname;
ps:使用这条命令后,sql Manager 必须卡死
方法四:
alter table tablename auto_increment=0