Good morning,
How can I remove single quotation marks from a string in the oracle database? If I do Replace (test, '' ',' ') is not right.
Thank you.
Good morning,
How can I remove single quotation marks from a string in the oracle database? If I do Replace (test, '' ',' ') is not right.
Thank you.
You have to give escape
:
REPLACE (teste, '''', '')