将帝国CMS中的栏目路径批量替换的SQL语句
帝国CMS批量替换栏目路径的SQL语句如下: ```sql UPDATE `enewsclass` SET classpath=REPLACE(classpath, '原路径', '新路径') WHERE id IN (1,2,3); ``` 其中,`enewsclass`是表名,`classpath`是栏目路径字段,`id`是栏目ID字段。将`原路径`替换为需要替换的旧路径,将`新路径`替换为需要替换的新路径。在`id IN (1,2,3)`中,将数字替换为需要批量替换的栏目ID。
将栏目路径清空sql语句
UPDATEphome_enewsclassSETclasspath='';
将清空后的栏目名替换成栏目id,并在id前加html目录,如html/5
UPDATEphome_enewsclassSETclasspath=concat(classpath,'html/',classid);