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, '' ',' '' ');  

Comments

Popular posts from this blog

asp.net - Javascript/DOM Why is does my form not support submit()? -

sockets - Delphi: TTcpServer, connection reset when reading -

javascript - Classic ASP "ExecuteGlobal" statement acting differently on two servers -