Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> case insensitive search.......how?
I have the value "Hello, I am a boy." in a field called "name" declared as VARCHAR(255)
I tried to do
SELECT * FROM table WHERE name LIKE '%hello%';
but it returns zero row.
and only
SELECT * FROM table WHERE name LIKE '%Hello%';
returns 1 row.
How to solve this?
-- Thanks and Regards, FungReceived on Mon Jul 03 2000 - 00:00:00 CDT
![]() |
![]() |