Re: max() not using index - Mailing list pgsql-general

From Peter Gibbs
Subject Re: max() not using index
Date
Msg-id 004901c22d8f$20d81300$0b01010a@emkel.co.za
Whole thread Raw
In response to max() not using index  (Ralph Graulich <maillist@shauny.de>)
Responses Re: max() not using index  (Ralph Graulich <maillist@shauny.de>)
List pgsql-general
"Ralph Graulich" wrote:


> EXPLAIN SELECT MAX(dam_id) FROM dam;
> NOTICE:  QUERY PLAN:
>
> Aggregate  (cost=5774.65..5774.65 rows=1 width=4)
>   ->  Seq Scan on dam  (cost=0.00..5442.92 rows=132692 width=4)

select dam_id from dam order by dam_id desc limit 1;

--
Peter Gibbs
EmKel Systems



pgsql-general by date:

Previous
From: "Peter Gibbs"
Date:
Subject: Re: Using index with order desc
Next
From: Helge Bahmann
Date:
Subject: Re: Using index with order desc