Re: the best way to get the topest 3 record in every group - Mailing list pgsql-sql

From jack
Subject Re: the best way to get the topest 3 record in every group
Date
Msg-id 000701c257d8$1163c9a0$1400a8c0@jac
Whole thread Raw
In response to the best way to get the topest 3 record in every group  ("jack" <datactrl@tpg.com.au>)
Responses Re: the best way to get the topest 3 record in every group  (Masaru Sugawara <rk73@sea.plala.or.jp>)
List pgsql-sql
Dima
My question is that I want to produce ALL the lastest 3 records for EACH
itemNo and supplier.

Jack
----- Original Message -----
From: "dima" <_pppp@mail.ru>
To: "jack" <datactrl@tpg.com.au>
Cc: <pgsql-sql@postgresql.org>
Sent: Monday, September 09, 2002 4:34 PM
Subject: Re: [SQL] the best way to get the topest 3 record in every group


> > There is a table like :
> > <<
> > itemNo
> > supplier
> > purchaseDate
> > Price
> > Qty
> > <<
> > Please provide an idea if I want to get the latest 3 puchase records for
> > each item and supplier. Thank you in advance.
> select * from table_name where supplier=value order by purchaseDate desc
> limit 3
> ???
>
>



pgsql-sql by date:

Previous
From: dima
Date:
Subject: Re: the best way to get the topest 3 record in every group
Next
From: Viacheslav N Tararin
Date:
Subject: Re: the best way to get the topest 3 record in every group