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

From Sam Mason
Subject Re: Bringing other columns along with a GROUP BY clause
Date
Msg-id 20090205200742.GN3008@frubble.xen.chris-lamb.co.uk
Whole thread Raw
In response to Bringing other columns along with a GROUP BY clause  ("Rob Richardson" <Rob.Richardson@rad-con.com>)
Responses Re: Bringing other columns along with a GROUP BY clause  ("Rob Richardson" <Rob.Richardson@rad-con.com>)
List pgsql-general
[ Rob, it would help if you didn't "reply" to unrelated messages.
  Decent mail programs automatically "thread" emails based on what you
  reply to and hence unrelated messages like yours tend to get lost.  ]

On Thu, Feb 05, 2009 at 02:43:07PM -0500, Rob Richardson wrote:
> I want a list of
> the coils whose coldspot_times are the largest for their charge.

> Select coil_id, charge, max(coldspot_time)
> From inventory
> Group by charge

The DISTINCT ON clause would help here, something like:

  SELECT DISTINCT ON (coil_id), coil_id, charge, MAX(largest_time)
  FROM inventory
  GROUP BY coil_id, charge
  ORDER BY coil_id, MAX(largest_time) DESC;

--
  Sam  http://samason.me.uk/

pgsql-general by date:

Previous
From: "Rob Richardson"
Date:
Subject: Bringing other columns along with a GROUP BY clause
Next
From: Tom Lane
Date:
Subject: Re: Bringing other columns along with a GROUP BY clause