Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: 10g field varchar size
frank.van.bortel_at_gmail.com wrote:
> DA Morgan schreef: >
> > Correct - but not directly; like > where <clob_col> like ... > You have to use a function
You mean like this?
CREATE TABLE demo (
clobcol CLOB);
INSERT INTO demo (clobcol) VALUES ('This is a test'); INSERT INTO demo (clobcol) VALUES ('This is not a test'); COMMIT; desc demo
SELECT * FROM demo;
SELECT *
FROM demo
WHERE clobcol LIKE '%not%';
Works perfectly in 10.2.0.2.0.
-- Daniel A. Morgan University of Washington damorgan_at_x.washington.edu (replace x with u to respond) Puget Sound Oracle Users Group www.psoug.orgReceived on Mon Aug 14 2006 - 10:39:36 CDT
![]() |
![]() |