Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: SQL Command

Re: SQL Command

From: Stephan Bressler <stephan.bressler_at_siemens.com>
Date: Tue, 25 Mar 2003 09:27:03 +0100
Message-ID: <b5p3pp$h17$1@news.mch.sbs.de>

"Tanel Poder" <tanel@@peldik.com> wrote in message news:3e7f715e$1_2_at_news.estpak.ee...
> > SELECT description
> > FROM stock
> > WHERE UPPER(description) LIKE '%APPLES%'; or
> >
> > SELECT description
> > FROM stock
> > WHERE LOWER(description) LIKE '%apples%';
>
> Note that this kind of query isn't able to use any normal indexes on
column
> description if you don't create function based indexes on UPPER or LOWER
> function.

True, but if the pattern starts with %, an index won't help anyway. Stephan Received on Tue Mar 25 2003 - 02:27:03 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US