开门见山:使用replace('字段名', '需要被替换的值', '替换的值')
详细说明:
有如下原始表:
想得到如下表:
可以使用:
update `user_info` set name = replace(name, '10', '_10');
#或
update `user_info` set name = replace(name, substring(name, 4,5), '_10');
开门见山:使用replace('字段名', '需要被替换的值', '替换的值')
详细说明:
有如下原始表:
想得到如下表:
可以使用:
update `user_info` set name = replace(name, '10', '_10');
#或
update `user_info` set name = replace(name, substring(name, 4,5), '_10');
本文标题:mysql 指定字段值匹配替换
本文链接:https://www.haomeiwen.com/subject/sycooctx.html
网友评论