I have to replace special characters in SQL.
My problem is with '
, because it is used for start and end of string in SQL.
I tried:
ID = REPLACE(ID, ''', '') ID = REPLACE(ID, "'", "")
But both not worked. What should I do?
Advertisement
Answer
Either Use the char function and ascii code:
ID = REPLACE(ID, char(39), '')
or double down on the single quotes:
ID = REPLACE(ID, '''', '')