mysql 批量替换指定字段内容语句示例

发布时间:2020-07-24编辑:脚本学堂
本文介绍了mysql 批量替换指定字段中字符串内容的方法,mysql replace语句实现批量替换的例子,需要的朋友参考下。

mysql中进行字段内容的替换,当然是使用replace函数来完成了,来看二个小例子。

1、update 表名 set 字段名=replace(字段名,'原来的内容','替换后的内容')

命令:
 

update test_news set filepath=replace(filepath,'wallpapers/art/','wallpapers/beautiful/art/')

2、update 数据表名 set 字段名 = replace(字段名, '要替换的字符串', '替换为') where 设定条件;

加入替换条件,替换限定id小于200的内容:
 

update wp_posts set post_content = replace(post_content, '搜索引擎优化', '搜索引擎营销') where id < 200;