INSERT with single quote [message #66305] |
Wed, 20 March 2002 14:47 |
Humberto
Messages: 1 Registered: March 2002
|
Junior Member |
|
|
Hi,
I need to insert some alphanumeric values into a table but some of them have a single quote as part of the data. I do not know how to write an SQL sentence to do it due to the string should be enclosed between single quotes.
I am using ORACLE.
Regards,
HA
|
|
|
Re: INSERT with single quote [message #66355 is a reply to message #66305] |
Wed, 24 April 2002 20:17 |
srinivasarao
Messages: 15 Registered: April 2002
|
Junior Member |
|
|
hai
while inserting single quotes
add one more single quote to that like
insert into emp(ename)values('yours''faithfully')
to insert the yours'faithfully
all the best
srinivasarao.pamidi
|
|
|
|
|