Re: SQL subqueries newbie help

From: Bruno Wolff III <bruno(at)wolff(dot)to>
To: Alexei Chetroi <lexoid(at)lexa(dot)uniflux-line(dot)net>
Cc: Pgsql-Sql <pgsql-sql(at)postgresql(dot)org>
Subject: Re: SQL subqueries newbie help
Date: 2003-09-06 15:41:49
Message-ID: 20030906154149.GA24418@wolff.to
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Sat, Sep 06, 2003 at 14:07:09 +0300,
Alexei Chetroi <lexoid(at)lexa(dot)uniflux-line(dot)net> wrote:
> Hi All,
>
> I need a little help regarding writing some subqueries. For example I
> have a table "items" which contains columns: itemid, description; and
> another table "events" with columns: itemid, date, event. events.itemid
> references items.itemid. Table events contains events regarding some
> itemid's from table items, so there could be multiple events regarding
> one item from items table. for example:
>
> Table: items
> itemid description
> 1 Lamp
> 2 Desk
> 3 HiFi
>
> Table: events
> itemid event date
> 1 purchase 2003-01-01
> 1 repair 2003-01-03
> 1 repair 2003-02-05
> 2 purchase 2003-02-01
> 3 HiFi 2003-02-01
>
> I'd like to write a query which returns following information regarding
> each item: item, date of very first event, very last event.
> Is this possible? I think I can write several SELECT queries and
> procces them by an application or possibly write some procedure, but
> what is better solution?

You can use group by to do this. If there were a large amount of events per
item, you might get better performance by using disctinct on and limit
in subqueries to get the max and min. That doesn't seem likely for this
problem. Distinct on would also be useful if you want to get the event
with the first and last dates.

The query you want looks something like this:
select description, min(date), max(date) from items, events
where items.itemid = events.itemid group by description;

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Rod Taylor 2003-09-06 17:21:36 Re: SQL subqueries newbie help
Previous Message Alexei Chetroi 2003-09-06 11:07:09 SQL subqueries newbie help