mysql查找替换快捷键

发布时间: 2023-11-21 13:12 阅读: 文章来源:1MUMB4906PS

mysql怎么替换字段

MySql字段全部替换以及字段部分替换

语法:

update 表名 set 字段名 = replace(字段名,‘要替换的内容‘,‘替换成的内容‘);

也可以写成:

update 表名 set 字段名 = replace(字段名,fromStr,toStr);

1. 全部替换

全部替换就把被替换的和要替换送上去

update user_bag SET cover_url = replace(cover_url, ‘http://static.zpnb.com/768.jpg’,‘http://static.bddvip.com/zpnb412.png’) WHERE id = 1

2. 部分替换

比如我想把图片路径中的 http://static.zpnb.com/768.jpg ,http替换成https,只需要把http,和https填进去,顺序不要搞反。

update XXX SET item_example_img = replace (item_example_img,‘http’,‘https’)
•••展开全文
相关文章