織夢(DEDECMS)批量替換文章,標題,關(guān)鍵字,標簽等等內(nèi)容的SQL命令
標題批量替換
update dede_archives set title=replace(title,'舊標題','新標題')
文章作者批量替換
update dede_archives set writer=replace(writer,'舊作者','新作者')
文章來源批量替換
update dede_archives set source=replace(source,'舊來源','新來源');
文章標簽批量替換
update dede_tagindex set tag=replace(tag,'舊關(guān)鍵字','新關(guān)鍵字');
update dede_taglist set tag=replace(tag,'舊標簽','新標簽');
文章頁關(guān)鍵字批量替換
update dede_archives set keywords=replace(keywords,'別人的','你的');
文章頁描述批量替換
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語句
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'
織夢批量刪除文章內(nèi)容數(shù)據(jù)庫里所有超鏈接
注意:記得先備份一下數(shù)據(jù)庫
后臺-系統(tǒng)-SQL,執(zhí)行多幾次 下面2個語句一起執(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.本站主要是為了記錄工作、學習中遇到的問題,可能由于本人技術(shù)有限,內(nèi)容難免有紕漏,一切內(nèi)容僅供參考。
2.本站部分內(nèi)容來源互聯(lián)網(wǎng),如果有圖片或者內(nèi)容侵犯您的權(quán)益請聯(lián)系我們刪除!
3.本站所有原創(chuàng)作品,包括文字、資料、圖片、網(wǎng)頁格式,轉(zhuǎn)載時請標注作者與來源。