Tried to think how to generalize my question and just couldn't think of something (which is perhaps why I googling has noe provided a solution yet).
So I'm putting my question in terms of a USERS table and a COMMENTS table where I want to get the most recent COMMENT for each user.
USERS
| ID | NAME |
-------------
| 01 | BOB |
-------------
| 02 | JEN |
-------------
COMMENTS
| EMP_ID | UPDATED |
-----------------------
| 01 | 12/05/2011 | <== I WANT THIS
-----------------------
| 01 | 11/29/2011 |
-----------------------
| 02 | 12/01/2011 | <== ...AND THIS
-----------------------
| 02 | 11/27/2011 |
I've tried something like this...
select e.date from USERS u
join EMPLOYEES e on e.emp_id=u.id
where emp_id in (select emp_id from TIMESHEETS where emp_id=u.id order by date fetch first 1 row only)
...and it works, but is horrendously slow.
(We're using DB2 and so I have Common Tables at our disposal)
{ }) on the editor toolbar to nicely format and syntax highlight it! – marc_s Dec 5 '11 at 19:15