Guest User

Untitled

a guest
Jan 19th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. Replace(my_column,'''','')
  2.  
  3. UPDATE your_table
  4. SET your_column = REPLACE(your_column, ''', ''');
  5.  
  6. select replace('abc''def','''','')
  7.  
  8. Replace(my_column,"'",''')
Add Comment
Please, Sign In to add comment