Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Case sensitive "like"
gerard wrote
> I want to avoid using "where lower(name) like 'fred'"
Just to be sure: you know you should use some wildcards to make the like do its job? Like:
where lower(name) like 'fred%'
Ohhh, now I get the picture. You just want a case-insenstive comparisment, not a search. Then you should indeed use
where lower(name) = 'fred'
or, of course,
where upper(name) = 'FRED'
Arjan. Received on Fri May 07 1999 - 13:00:51 CDT
![]() |
![]() |