limit results to one row per foreign object

From: "Alan Bullock" <liststuff(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: limit results to one row per foreign object
Date: 2006-06-30 15:13:12
Message-ID: e83f29$dss$1@sea.gmane.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

hi all, I have the following schema:

CREATE TABLE auctions ( id serial NOT NULL, user_id int4, title
varchar(255), body varchar(255), CONSTRAINT auctions_pkey PRIMARY KEY (id) )
WITHOUT OIDS;

CREATE TABLE bids ( id serial NOT NULL, auction_id int4, user_id int4,
amount float8, created_at timestamp, CONSTRAINT bids_pkey PRIMARY KEY (id) )
WITHOUT OIDS;

CREATE TABLE users ( id serial NOT NULL, username varchar(255), CONSTRAINT
users_pkey PRIMARY KEY (id) ) WITHOUT OIDS;

I'd like to return all the bids for a given auction, but limit it to only
the *latest* bid from each user. so regardless of how many bids a user has
placed, only their latest is returned.

I dont have a clue where to even start with this and would appreciate some
pointers
thanks

alan

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Dave Page 2006-06-30 15:16:16 Re: Notes on converting from MySQL 5.0.x to PostgreSQL 8.1.4
Previous Message Scott Marlowe 2006-06-30 15:12:14 Re: Notes on converting from MySQL 5.0.x to PostgreSQL