織夢(mèng)(DEDECMS)批量替換文章,標(biāo)題,關(guān)鍵字,標(biāo)簽等等內(nèi)容的SQL命令
標(biāo)題批量替換
update dede_archives set title=replace(title,'舊標(biāo)題','新標(biāo)題')
文章作者批量替換
update dede_archives set writer=replace(writer,'舊作者','新作者')
文章來(lái)源批量替換
update dede_archives set source=replace(source,'舊來(lái)源','新來(lái)源');
文章標(biāo)簽批量替換
update dede_tagindex set tag=replace(tag,'舊關(guān)鍵字','新關(guān)鍵字');
update dede_taglist set tag=replace(tag,'舊標(biāo)簽','新標(biāo)簽');
文章頁(yè)關(guān)鍵字批量替換
update dede_archives set keywords=replace(keywords,'別人的','你的');
文章頁(yè)描述批量替換
update dede_archives set description=replace(description,'舊描述','新描述')
文章Url規(guī)則批量替換
(把所有文章Url規(guī)則全部替換成{typedir}/{aid}.html這樣一種形式)
update dede_arctype set namerule='{typedir}/{aid}.html';
內(nèi)容批量替換
update dede_addonarticle set body=replace(body,'舊內(nèi)容','新內(nèi)容')
縮略圖批量替換
update dede_archives set litpic=replace(litpic,'舊圖地址','新圖地址')
DeDeCMS 清空所有文章SQL語(yǔ)句
DELETE FROM dede_addonarticle WHERE aid >= 1 and aid< =5000;DELETE FROM dede_arctiny WHERE id >= 1 and id< =5000;DELETE FROM dede_archives WHERE id >= 1 and id<=5000;
注意:清空回收站里所有的文章
delete dede_addonarticle,dede_archives,dede_arctiny from dede_addonarticle,dede_archives,dede_arctiny where dede_addonarticle.aid=dede_archives.id and dede_arctiny.id=dede_archives.id and dede_archives.arcrank='-2'
織夢(mèng)批量刪除文章內(nèi)容數(shù)據(jù)庫(kù)里所有超鏈接
注意:記得先備份一下數(shù)據(jù)庫(kù)
后臺(tái)-系統(tǒng)-SQL,執(zhí)行多幾次 下面2個(gè)語(yǔ)句一起執(zhí)行多次
update #@__addonarticle set body=replace(body,substring(body,locate('<a',body),locate('>',body,locate('<a ', body))+1-locate('<a',body)),'');
update #@__addonarticle set body=replace(body,'</a>','');
1.本站主要是為了記錄工作、學(xué)習(xí)中遇到的問(wèn)題,可能由于本人技術(shù)有限,內(nèi)容難免有紕漏,一切內(nèi)容僅供參考。
2.本站部分內(nèi)容來(lái)源互聯(lián)網(wǎng),如果有圖片或者內(nèi)容侵犯您的權(quán)益請(qǐng)聯(lián)系我們刪除!
3.本站所有原創(chuàng)作品,包括文字、資料、圖片、網(wǎng)頁(yè)格式,轉(zhuǎn)載時(shí)請(qǐng)標(biāo)注作者與來(lái)源。