美文网首页
mysql 指定字段值匹配替换

mysql 指定字段值匹配替换

作者: steamed_bun | 来源:发表于2020-01-02 14:56 被阅读0次

    开门见山:使用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