Mysql remove a special charecter which occurs after a specific special character -
the data in cell "0^0^@1@^0^0^1^0" , want 0^0^@1@0^0^1^0 . looking , want remove special character "^" occurs after "@". note remaining "^" should remain is.
i think want replace()
:
select replace(col, '@^', '@')
Comments
Post a Comment