Re: fetch first rows of grouped data

From: Joel Richard <postgres(at)joelrichard(dot)com>
To: "D'Arcy J(dot)M(dot) Cain" <darcy(at)druid(dot)net>, Claudia Kosny <ckosny(at)gmx(dot)net>
Cc: sql pgsql <pgsql-sql(at)postgresql(dot)org>
Subject: Re: fetch first rows of grouped data
Date: 2007-08-27 17:34:09
Message-ID: 4CB5D209-C0CC-466E-A967-E766D6AD799B@joelrichard.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

That's what I thought at first, but this is not the case. She's
looking for the first two dates in -each- city in the table. I
initially thought that this could be accomplished with GROUP BY and
LIMIT, but GROUP BY can only give you the first date for each city,
not the first two dates for each city.

So far, I haven't come up with any clever ideas. I'm not sure this
can be done in SQL.

--Joel

On Aug 27, 2007, at 12:51 PM, D'Arcy J.M. Cain wrote:

> On Mon, 27 Aug 2007 18:36:47 +0200
> Claudia Kosny <ckosny(at)gmx(dot)net> wrote:
>> I have a list of events that take place in a certain city at a
>> certain
>> date. Now I would like to have the first two (ordered by date) events
>> for each city.
>>
>> Is there a way to do this with one query?
>> I am using PostgreSQL 7.4.
>
> I believe you are looking for the LIMIT keyword. Check the docs on
> the
> web site.
>
> --
> D'Arcy J.M. Cain <darcy(at)druid(dot)net> | Democracy is three
> wolves
> http://www.druid.net/darcy/ | and a sheep voting on
> +1 416 425 1212 (DoD#0082) (eNTP) | what's for dinner.
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 2: Don't 'kill -9' the postmaster

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Michael Glaesemann 2007-08-27 18:12:48 Re: fetch first rows of grouped data
Previous Message D'Arcy J.M. Cain 2007-08-27 16:51:02 Re: fetch first rows of grouped data