Re: optimize query with a maximum(date) extraction - Mailing list pgsql-performance

From Gregory Stark
Subject Re: optimize query with a maximum(date) extraction
Date
Msg-id 87tzq9p4x0.fsf@oxford.xeocode.com
Whole thread Raw
In response to Re: optimize query with a maximum(date) extraction  ("Peter Childs" <peterachilds@gmail.com>)
List pgsql-performance
"Peter Childs" <peterachilds@gmail.com> writes:

> My personal reaction is why are you using distinct at all?
>
> why not
>
> select id,
>        min(the_date) as min_date,
>        max(the_date) as max_date
>   from my_table group by id;
>
> Since 8.0 or was it earlier this will use an index should a reasonable one
> exist.

That's not true for this query. In fact that was precisely the original query
he as looking to optimize.


--
  Gregory Stark
  EnterpriseDB          http://www.enterprisedb.com

pgsql-performance by date:

Previous
From: Gregory Stark
Date:
Subject: Re: optimize query with a maximum(date) extraction
Next
From: Gregory Stark
Date:
Subject: Re: optimize query with a maximum(date) extraction