quoted string not properly terminated... [message #245232] |
Fri, 15 June 2007 10:48  |
mbalves
Messages: 20 Registered: May 2007
|
Junior Member |
|
|
Hello,
I want to insert the follow string in a field:
I'm a good guy
How can i do it?
I can not do something like:
upadate table1 set f1 = 'I'm a good guy';
because the char ' is the same of the delimited string. One way is to do in this way:
upadate table1 set f1 = 'I' || chr(39) || 'm a good guy';
But i want to know if there are any special character to indicate that the follow character belong to string
Best, Miguel
|
|
|
|
|
|