Re: Complicated "group by" question - Mailing list pgsql-sql

From Jeff Boes
Subject Re: Complicated "group by" question
Date
Msg-id IgGZc.92877$JG7.85347@hydra.nntpserver.com
Whole thread Raw
In response to Complicated "group by" question  (Andrew Perrin <clists@perrin.socsci.unc.edu>)
List pgsql-sql
Andrew Perrin wrote:
> I have a table of people ("reviewers"), a table of review assignments
> ("assign"), and a table of review acceptances ("accept"). I would like to
> be able to write a query to return the latest (e.g., max(assign_date))
> assignment for each reviewer, plus the acc_id field from "accept".  I
> think I should be able to do this with a GROUP BY clause, but am having no
> luck.
> 
> Table structure:
> 
> reviewers    assign        accept
> -----------------------------------------
> reviewer_id    assign_id    accept_id
>         reviewer_id    assign_id
> ...        assign_date
>         ...        ...
> 


I think you want to write a non-GROUPed query using "DISTINCT ON". 
Something like this:

SELECT DISTINCT ON (reviewer_id,assign_id) reviewer_id, assign_id, assign_date, accept_id
FROM reviewers
JOIN assign USING (reviewer_id)
JOIN accept USING (accept_id)
ORDER BY reviewer_id, assign_id, assign_date DESC;


-- 
(Posted from an account used as a SPAM dump. If you really want to get
in touch with me, dump the 'jboes' and substitute 'mur'.)
________
Jeffery Boes <>< jboes@qtm.net


pgsql-sql by date:

Previous
From: Devrim GUNDUZ
Date:
Subject: Re: PRIMARY KEY and INDEX
Next
From: Erik Wasser
Date:
Subject: Full access to a DB with a second user?