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?
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?