Re: SQL optimization - WHERE SomeField STARTING WITH ... - Mailing list pgsql-general

From Pavel Stehule
Subject Re: SQL optimization - WHERE SomeField STARTING WITH ...
Date
Msg-id 162867790808281140u3bf99fe1qd0d46abe757064e0@mail.gmail.com
Whole thread Raw
In response to SQL optimization - WHERE SomeField STARTING WITH ...  (Bill <pg@dbginc.com>)
List pgsql-general
Hello

2008/8/28 Bill <pg@dbginc.com>:
> The SQL database servers I have worked with cannot use and index for a
> SELECT of the form
>
> SELECT * FROM ATABLE
> WHERE AFIELD LIKE ?
>
> because there is no way to know the location of the wild card until the
> parameter value is known. InterBase and Firebird allow
>
> SELECT * FROM ATABLE
> WHERE AFIELD STARTING WITH ?
>
> which is equivalent to LIKE  'ABC%' and will use an index on AFIELD. Is
> there a similar syntax in PostgreSQL?
>

there is some similar - look
http://www.depesz.com/index.php/2008/03/04/searching-for-longest-prefix/
http://pgfoundry.org/projects/prefix

regards
Pavel Stehule


> Bill
>
> --
> Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general
>

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: temp schemas
Next
From: "F. Jovan Jester"
Date:
Subject: Re: Postgres in a solaris zone