Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: quotes problem
SQL> create table temp (x varchar(20));
Table created.
SQL> insert into temp values ('Test''s data');
1 row created.
SQL> select * from temp;
X
SQL> select * from temp where x like 'Test''s%';
X
Thanks
V Prakash
Sent via Deja.com http://www.deja.com/ Share what you know. Learn what you don't. Received on Wed Aug 25 1999 - 12:31:42 CDT
![]() |
![]() |