原创 DEDE数据库语句 DEDESQL命令批量替换 SQL执行语句

2016-1-22 22:33 1071 20 20 分类: 软件与OS

1.更改文章中的内容 Dede教程-598080707.NET

 

update dede_addonarticle set body=replace(body,'原来的字符','替换后的字符')

 

例如:update dede_addonarticle set body=replace(body,'音乐下载','音乐试听)


2.更改缩略图目录

 

SQL命令: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://www.chenchr.com','src="http://chenchr.com');

 

例如:把图片路径由原来的http://www.chenchr.com替换成http://chenchr.com


4.批量替换文章模型中内容部分超链接.

 

update dede_addonarticle set body=replace(body,'href="http://www.chenchr.com','href="http://chenchr.com');

 

例如:把文章模型中的超链接由原来的http://www.chenchr.com替换成http://chenchr.com


5.批量替换文章模型中内容部分图片锚文本文字.

 

update dede_addonarticle set body=replace(body,'alt="http://www.chenchr.com/','alt="http://.chenchr.com/');

 

例如:把文章模型中的图片锚文本信息由原来的http://www.chenchr.com替换成http://chenchr.com


6.批量替换软件模型内容部分超链接

 

update dede_addonsoft set introduce=replace(introduce,'href="http://chenchr.com/js/ys.html','href="http:/chenchr.com/index.html');

 

例如:把软件模型内容中超链接由原来的http://www.chenchr.com/js/ys.html替换成http:/chenchr.com/index.html


7.批量替换文章模型中作者字段

 

update dede_archives set writer=replace(writer,'http://www.chenchr.com','http://chenchr.com');

 

例如:把文章模型中的作者由原来的http://www.chenchr.com替换成http://chenchr.com


8.批量替换文章模型中来源字段

 

update dede_archives set source=replace(source,'心情驿站 WWW.JINQQ.NET','DEDE技术吧 598080707.NET');

 

例如:把文章模型中的帖子来源由原来的工业炉www.chenchr.com替换成电炉 chenchr.com


9.批量替换文章命名规则 DEDE技术吧-598080707.NET

 

update `dede_arctype` set namerule='{typedir}/{aid}.html';

 

例如:把站内所有文章模型命名规则全部替换成{typedir}/{aid}.html这样一种形式


10批量替换软件模型演示地址超链接

 

update dede_addonsoft set writer=replace(officialUrl,'http:/www.chenchr.com','http://chenchr.com');

 

例如:把软件模型原始地址超链接由原来的http:/www.chenchr.com替换成http://chenchr.com

PARTNER CONTENT

文章评论0条评论)

登录后参与讨论
EE直播间
更多
我要评论
0
20
关闭 站长推荐上一条 /3 下一条