1
I have a field in my table with a string as follows:
80,82,45,80,82,79,88,73,77,79,32,65,32
I want to replace the comma (,
) comma between single quotes (','
), to stay:
80','82','45','80','82','79','88','73','77','79','32','65','32
I’m trying this way:
SELECT REPLACE(CAMPO,',','','')
FROM TABELA;
But he returns to me:
ORA-00939: many arguments for the function.
Does anyone have any suggestions on how to do?
Man, it worked. Thanks!
– Rafael Dantas