Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: why 's%' use index '%s' doesn't?
"Ed Wong" <ewong_at_mail.com> wrote
> When I use like operator, I found that search by 's%' is so much
> different from '%s'. Why is that and how to resolve this?
LIKE ('%s') is similar to:
On DOS/Windows: dir *s
On Unix : ls *s
(list all files ending with the character 's')
LIKE ('s%') is similar to:
On DOS/Windows: dir s*
On Unix : ls s*
(list all files starting with the character 's')
-- BillyReceived on Fri Jul 27 2001 - 01:22:27 CDT
![]() |
![]() |