Remove certain characters from a string

后端 未结 3 1257
自闭症患者
自闭症患者 2021-02-06 20:25

I\'m trying to remove certain characters.

At the moment I have output like cityname district but I want to remove cityname.

SEL         


        
3条回答
  •  臣服心动
    2021-02-06 20:46

    UPDATE yourtable 
    SET field_or_column =REPLACE ('current string','findpattern', 'replacepattern') 
    WHERE 1
    

提交回复
热议问题