1.修改字段里的所有含有指定字符串的文字
1
2
3
|
UPDATE 表A SET 字段B = replace (字段B, 'aaa' , 'bbb' )
example: update table set url= replace (url, 'aaa' , 'bbb' ) 【将url字段中的aaa批量更改为bbb】
update table set url= REPLACE (url, '3' , '1.png' ) where 条件;
|
2.常规条件修改:
1
2
|
update table set column = '' where column is null
列: update ` table ` set `url`= '0' where `url` is null
|
知识点补充:mysql批量替换某个字段的部分内容
举例说明
有数据表person,结构如下
id | name | urls |
1 | 张三 | xh.jpg |
2 | 李四 | xh.jpg |
3 | 王五 | 3.jpg |
需求:将urls字段中的xh替换为id字段的值
语句:
1
|
UPDATE person SET urls = ( REPLACE (urls, 'xh' ,id));
|
执行结果:
id | name | urls |
1 | 张三 | 1.jpg |
2 | 李四 | 2.jpg |
3 | 王五 | 3.jpg |
总结
到此这篇关于Mysql中批量替换某个字段的部分数据的文章就介绍到这了,更多相关mysql 批量替换字段内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/qq_14997169/article/details/53241395