yskl 发表于 2018-2-11 12:06:54


            PHP中ID设置自增后不连续的原因分析如下所述:
http://files.jb51.net/file_images/article/201608/201608211110541.png?2016721111423
alter table tablename drop column id;
alter table tablename add id mediumint(8) not null primary key auto_increment first;
页: [1]
查看完整版本: PHP中ID设置自增后不连续的原因分析及解决办法