注册 登录 欢迎您到模板精:织梦模板_dede模板_免费网站模板_网站源码下载

织梦教程_免费织梦模板下载_dede模板

该栏目分享织梦建站的基础知识,从织梦CMS的安装,到织梦标签的常规调用,以及织梦的常见问题答疑都有涉及。

当前位置:首页 > 织梦教程 >

织梦cms常用批处理SQL命令

免费网站模板 2020-09-15 10:47 织梦教程 评论
批量替换文章缩略图地址
 
 
update dede_archives set litpic=(REPLACE(litpic,/style/images/,/uploads/style/images/));
 批量替换正文内容超链接:
 
 
update dede_addonarticle set body=replace(body,href=http://www.baidu.com,href=h...
批量替换文章缩略图地址:
 
 
update dede_archives set litpic=(REPLACE(litpic,'/style/images/','/uploads/style/images/'));
批量替换正文内容超链接:
 
 
update dede_addonarticle set body=replace(body,'href="http://www.baidu.com','href="http://www.adminbuy.cn');
批量替换正文内容:
 
 
update dede_addonarticle set body=replace(body,'原来的字符','替换后的字符')
批量替换正文中图片路径:
 
 
update dede_addonarticle set body=replace(body,'/uploads/','/目录/uploads/');
批量替换文章标题:
 
 
update 'dede_archives' set title=replace(title,'百度','谷歌');
批量替换描述中关键词:
 
 
update 'dede_archives' set description=replace(description,'百度','谷歌');
批量替换文章发布作者:
 
 
update dede_archives set writer='你需要修改的作者' WHERE writer='修改后';
批量替换文章来源: 
 
 
update dede_archives set source='你需要修改的来源' WHERE source='修改后';
SQL替换命令:
 
UPDATE 表名 SET 字段 = REPLACE(字段,'替换内容','替换值')
表名dede_archives 字段litpic   (这是文章列表的图片缩略图)
表名dede_addonarticle 字段body (这是新闻文章内部的图片)
表名dede_addonimages 字段imgurls (这是图集文章内部的图片)