详情页

帝国CMS删除某条或N条文章后如何保持文章id连续性

时间:2024年04月11日

编辑:佚名

对于有强迫症的朋友,删除某篇文章或者N篇文章后,为了保持文章id的连续性,如何把删除的文章id补上呢
解决办法:后台>系统>备份与恢复数据>执行SQL语句
alter table [!db.pre!]ecms_news auto_increment=120;
alter table [!db.pre!]ecms_news_data_1 auto_increment=120;
alter table [!db.pre!]ecms_news_index auto_increment=120;
注意对数据进行操作,请先备份数据库!
相关文章
猜你需要