Quantcast
Channel: SK营销策划 » sql
Viewing all articles
Browse latest Browse all 2

DeDeCMS那些批量修改替换sql语句

$
0
0

利用dedecms后台SQL命令行工具批量修改内容,路径和超链接等信息。
语句 DEDECMS SQL命令批量替换

1.更改文章中的内容
update dede_addonarticle set body=replace(body,’原来的字符’,'替换后的字符’)
例子解释:update dede_addonarticle set body=replace(body,’软件下载’,'插件下载’)

2.更改缩略图目录
update dede_archives set litpic=replace(litpic,’原来的字符’,'替换后的字符’)
例子解释:update dede_archives set litpic=replace(litpic,’uplimg,’tupian’)

3.批量替换文章模型中内容部分图片链接路径.
update dede_addonarticle set body=replace(body,’src=”http://sk6.org/seojz/’,'src=”http://sk6.org/seotutorial/’);
例子解释:把图片路径由原来的http://sk6.org/seojz/替换成http://sk6.org/seotutorial/

4.批量替换文章模型中内容部分超链接
update dede_addonarticle set body=replace(body,’href=”http://www.sk6.org’,'href=”http://sk6.org’);
例子解释:把文章模型中的超链接由原来的http://www.sk6.org替换成http://sk6.org

5.批量替换文章模型中内容部分图片锚文本文字
update dede_addonarticle set body=replace(body,’alt=”http://www.sk6.org/’,'alt=”http://sk6.org/’);
例子解释:把文章模型中的图片锚文本信息由原来的http://www.sk6.org替换成http://sk6.org

6.批量替换软件模型内容部分超链接
update dede_addonsoft set introduce=replace(introduce,’http://www.sk6.org/seotutorial/1378.html’,'href=”http://sk6.org/seotutorial/1378.html’);
例子解释:把软件模型内容中超链接由原来的http://www.sk6.org/seotutorial/1378.html替换成http://sk6.org/seotutorial/1378.html

7.批量替换文章模型中作者字段
update dede_archives set writer=replace(writer,’http://www.sk6.org’,'http://sk6.org’);
例子解释:把文章模型中的作者由原来的http://www.sk6.org替换成http://sk6.org

8.批量替换文章模型中来源字段
update dede_archives set source=replace(source,’郑州SEOwww.sk6.org’,'郑州SEOsk6.org’);
例子解释:把文章模型中的帖子来源由原来的生活淘购www.sk6.org替换成淘购生活sk6.org

9.批量替换文章命名规则
update `dede_arctype` set namerule=’{typedir}/{aid}.html’;
例子解释:把站内所有文章模型命名规则全部替换成{typedir}/{aid}.html这样一种形式

10.批量替换软件模型演示地址超链接
update dede_addonsoft set writer=replace(officialUrl,’http:/www.sk6.org’,'http://sk6.org’);
例子解释:把软件模型原始地址超链接由原来的http:/www.sk6.org替换成http://sk6.org

11.批量审核文章
update dede_archives set arcrank=0
例子解释:arcrank=0 仅动态


Viewing all articles
Browse latest Browse all 2

Trending Articles