Re: Bringing other columns along with a GROUP BY clause - Mailing list pgsql-general

From Gregory Stark
Subject Re: Bringing other columns along with a GROUP BY clause
Date
Msg-id 87skmslbtg.fsf@oxford.xeocode.com
Whole thread Raw
In response to Re: Bringing other columns along with a GROUP BY clause  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
Tom Lane <tgl@sss.pgh.pa.us> writes:

> I have a feeling that it could also be done via the "window functions"
> feature due to be introduced in 8.4, but I'm not entirely sure how.
> Anybody feeling handy with those?

There may be a better way but something like

select * from (select *, rank() over (partition by charge order by coldspot_time desc) as r) where r = 1

?


--
  Gregory Stark
  EnterpriseDB          http://www.enterprisedb.com
  Ask me about EnterpriseDB's 24x7 Postgres support!

pgsql-general by date:

Previous
From: Erik Jones
Date:
Subject: Re: Pet Peeves?
Next
From: Kusuma Pabba
Date:
Subject: small doubt