美文网首页
Mysql查找指定字符串长度数据并替换

Mysql查找指定字符串长度数据并替换

作者: Tod_2021 | 来源:发表于2022-10-10 14:14 被阅读0次
    查找数据长度为3的姓名
    select char_length("张三");  -- 2
    select distinct name from db.table where char_length(name) = 3;
    
    批量将姓名"张三"替换"张x"
    update db.table set name=insert(name, 2, 1, 'x') where char_length(name) = 3;
    

    相关文章

      网友评论

          本文标题:Mysql查找指定字符串长度数据并替换

          本文链接:https://www.haomeiwen.com/subject/wpkoartx.html