美文网首页
NB的SQL语句

NB的SQL语句

作者: 一切重新来 | 来源:发表于2017-08-19 02:47 被阅读0次

    1.

    update TABLE_NAME set name = case 
        when instr(name,'(') and instr(name,')') then 
            concat(left(name, instr(name,'(')-1),substr(name, instr(name,')')+1))
        when instr(name,'(') then  left(name, instr(name, '(')-1)
        when instr(name, ')') then  substr(name, instr(name, ')')+1)
        else name
        end
    where name like '%(%';
    

    应用场景:去除表中字段的内容中的括号和括号中的内容。

    相关文章

      网友评论

          本文标题:NB的SQL语句

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