set off [message #239682] |
Wed, 23 May 2007 01:23 |
oracle_coorgi
Messages: 188 Registered: September 2006 Location: INDIA-karnataka
|
Senior Member |
|
|
hi
i want to update the data in column status and table proj
data in status column is
<e>Other issue's:</e> employee's status
update it to
<e>Other issue's:</e> employee's performance status
what is the option to set the ' off or how can i update this record
thanxs
|
|
|
|
|
|
Re: set off [message #239863 is a reply to message #239689] |
Wed, 23 May 2007 08:32 |
joy_division
Messages: 4963 Registered: February 2005 Location: East Coast USA
|
Senior Member |
|
|
Maaher wrote on Wed, 23 May 2007 02:34 | You can double the quote or - in 10gR2 - use the new 'quote construction':
SQL> SELECT 'employee''s status' method_one
2 , q'$employees's status$' method_two
3 FROM dual
4 /
METHOD_ONE METHOD_TWO
----------------- ------------------
employee's status employees's status
|
Cool Maaher. That's a new one to me.
|
|
|