How to replace single-quote with double-quote in sql query - oracle 10g? -
How do I change a single-quote (') with double-quote (") in SQL query - Oracle 10G
This should work:
update myTable myField = REPLACE (myField, '' ',' '' ');
How do I change a single-quote (') with double-quote (") in SQL query - Oracle 10G
This should work:
update myTable myField = REPLACE (myField, '' ',' '' ');
Comments
Post a Comment