Re: Complicated "group by" question
От | Josh Berkus |
---|---|
Тема | Re: Complicated "group by" question |
Дата | |
Msg-id | 200408251047.18645.josh@agliodbs.com обсуждение исходный текст |
Ответ на | Complicated "group by" question (Andrew Perrin <clists@perrin.socsci.unc.edu>) |
Ответы |
Re: Complicated "group by" question
|
Список | pgsql-sql |
Andrew, > 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. Some vagueness: you didn't say whether you wanted to see two assignments if they have the same, latest date. Nor did you specify whether you wanted to see assignments that had not been accepted (the below assumes yes to both) Hmmm ... one way, SQL-standard: SELECT reviewer.name, assign_date, acc_id FROM reviewers JOIN assign ON reviewer.id = assign.reviewer_idLEFT OUTER JOIN accept ON assign.id = accept.assign_id WHERE assign_date IN (SELECT max(ass2.assign_date) FROM assign ass2WHERE ass2.reviewer_id = reviewers.id) or for a bit faster execution on PG you cann replace that WHERE clause with: WHERE assign_date IN (SELECT ass2.assign_date FROM assign ass2WHERE ass2.reviewer_id = reviewers.id ORDER BY ass2.assign_dateDESC LIMIT 1) -- Josh Berkus Aglio Database Solutions San Francisco
В списке pgsql-sql по дате отправления: