注意:操作前請先備份一下數(shù)據(jù)庫
后臺-系統(tǒng)-SQL命令行工具 執(zhí)行下列命令,如果文章里面有多個鏈接,可執(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>','');
如果你的網(wǎng)站是生成的靜態(tài)的html頁面,執(zhí)行完成后,要重新生成全部內(nèi)容頁。
]]>進(jìn)入后臺系統(tǒng)設(shè)置-SQL命令行工具
update dede_addonarticle set body=replace(body,'原來的字符’,'替換后的字符’)
update?dede_archives set litpic=replace(litpic,'原來的字符’,'替換后的字符’)
上圖就是執(zhí)行了更改縮略路徑的命令,把縮略圖路徑中的http://www.com全部刪除
]]>delete from dede_archives where typeid=10;
delete from dede_arctiny where typeid=10;
delete from dede_addonarticle where typeid=10;
]]>
還有一種簡單方法,網(wǎng)站管理后臺-系統(tǒng)-SQL命令行工具,在里面直接輸入下面代碼,其中紅色就是你自定義的變量名稱,然后執(zhí)行,OK!
Delete FROM dede_sysconfig where varname="cfg_bdzdts"
]]>
update dede_archives set title=replace(title,'舊標(biāo)題','新標(biāo)題')
文章作者批量替換
update dede_archives set writer=replace(writer,'舊作者','新作者')
文章來源批量替換
update dede_archives set source=replace(source,'舊來源','新來源');
文章標(biāo)簽批量替換
update dede_tagindex set tag=replace(tag,'舊關(guān)鍵字','新關(guān)鍵字');
update dede_taglist set tag=replace(tag,'舊標(biāo)簽','新標(biāo)簽');
文章頁關(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'
注意:記得先備份一下數(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>','');
]]>