Re: SQL Question

From: <jday(at)gisolutions(dot)us>
To: Thomas Kellerer <spam_eater(at)gmx(dot)net>, pgsql-general(at)postgresql(dot)org
Subject: Re: SQL Question
Date: 2005-04-15 14:42:00
Message-ID: 20050415144200.A1C1C5406F@svr1.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

select max(lastupdate),prodid
from tablename
group by prodid

-----Original Message-----

From: Thomas Kellerer <spam_eater(at)gmx(dot)net>
Subj: Re: [GENERAL] SQL Question
Date: Fri Apr 15, 2005 7:24 am
Size: 621 bytes
To: pgsql-general(at)postgresql(dot)org

On 15.04.2005 13:58 Alex wrote:

> Hi,
>
> i have a table
>
> ProdId | LastUpdate
> -------+------------
> 100 | 2005-04-01
> 100 | 2005-03-01
> 100 | 2005-02-01
> 200 | 2005-04-01
> 200 | 2005-03-01
> 200 | 2005-02-01
>
> - How can i select only the newest record for each ProdId ?
>
> 100 | 2005-04-01
> 200 | 2005-04-01
>
SELECT prodid,
lastupdate
FROM produpdate p1
WHERE lastupdate = (SELECT MAX (lastupdate) FROM produpdate p2 WHERE p2.prodid =
p1.prodid)

Thomas

---------------------------(end of broadcast)---------------------------
TIP 8: explain analyze is your friend

Joseph M Day
Global Innovative Solutions
651 W Washington Blvd
Chicago, IL 60661
D: (312) 371-3054
F: (312) 421-8557

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Joshua D. Drake 2005-04-15 14:51:10 Re: PostgreSQL and Schema (pictures)
Previous Message Sean Davis 2005-04-15 14:40:52 Re: PostgreSQL and Schema (pictures)