織夢批量修改替換文章標(biāo)題內(nèi)容SQL語句集合
時間: 2018-12-05 08:31
閱讀: 次
作者:素材無憂網(wǎng)
文章標(biāo)題字段的替換:
update dede_archives set title=replace(title,"被替換的內(nèi)容","替換成什么") where typeid= 欄目ID;
文章關(guān)鍵詞字段的替換;
update dede_archives set keywords=replace(keywords,"被替換的內(nèi)容","替換成什么");
文章描述字段的替換;
update dede_archives set description=replace(description,"被替換的內(nèi)容","替換成什么");
文章內(nèi)容字段的替換;
update dede_addonarticle set body=replace(body,"被替換的內(nèi)容","替換成什么") where typeid= 欄目ID;
批量刪除某個表中的所有內(nèi)容:
delete from 表名 where id < 20001 and id >28000;
標(biāo)簽: