Re: : Postgres IX - Mailing list pgsql-general

From Richard Huxton
Subject Re: : Postgres IX
Date
Msg-id 424D1833.4000406@archonet.com
Whole thread Raw
In response to Re: : Postgres IX  (Shaun Clements <ShaunC@relyant.co.za>)
List pgsql-general
Shaun Clements wrote:
> Or better yet.
> Can anyone explain the use of indexing, effecting the performance of select
> query, using INDEXED columns, and non indexed columns.
>
> I.E.
>
> Select from table where column1 = 'xxxx' and column2 = 'xxxxx'
>
> WHERE COLUMN1 is indexed, and COLUMN2 isnt.

Well, if PG chooses to use an index on column1 alone, it will use the
index to find column1='xxxx' and then check all those rows to find
column2='xxxx'.

Of course, it might decide to just scan the whole table if it thinks
going to the index and then the table is more expensive.

EXPLAIN ANALYSE SELECT ... will show the full details of what it is doing.

--
   Richard Huxton
   Archonet Ltd

pgsql-general by date:

Previous
From: Shaun Clements
Date:
Subject: Re: : Postgres IX
Next
From: Shaun Clements
Date:
Subject: FW: Help with order by into a RECORD