I have two tables, linked with an outer join. The relationship between the primary and secondary table is a 1 to [0..n]. The secondary table includes a timestamp column indicating when the record was added. I only want to retrieve the most recent record of the secondary table for each row in the primary. I have to use a group by on the primary table due to other tables also part of the SELECT. There's no way to use a 'having' clause though since this secondary table is not part of the group.

How can I do this without doing multiple queries?

link|improve this question
can you give the full structure, as well as whatever query you have now that's not working? – nathan gonzalez May 21 '11 at 18:48
You should definitely give us your query, or at least a skeleton of it, so we get a better idea of what you're actually saying. – Olivier L. May 21 '11 at 18:51
feedback

4 Answers

up vote 1 down vote accepted

Something like:

SELECT a.id, b.* 
FROM table1 a
INNER JOIN table2 b ON b.parentid = a.id
WHERE b.timestamp = (SELECT MAX(timestamp) FROM table2 c WHERE c.parentid = a.id)

Use LEFT JOIN instead of INNER JOIN if you want to show rows for IDs in table1 without any matches in table2.

link|improve this answer
1  
I think you mean MAX(timestamp), to get the latest one. – Olivier L. May 21 '11 at 18:58
@Olivier: of course. Fixed. – tdammers May 21 '11 at 21:37
With with the "select(max...)" as part of the WHERE clause this won't work with an outer join (the result is that it will return only the rows from table a which also have at least one row in table b. However, I think this is close. I add an 'or b.timestamp=null' to the where clause and it seems to work. – Steve Lopez May 22 '11 at 14:30
@Steve Lopez: point taken. For a LEFT JOIN, you'd have to change the outer WHERE to an AND so that the subquery gets applied in the join condition; this way, even if the subquery doesn't yield any rows, the outer join will still produce results for these cases. – tdammers May 24 '11 at 9:42
feedback

For performance, try to touch the table least times

Option 1, OUTER APPLY

SELECT *
FROM
   table1 a
  OUTER APPY
  (SELECT TOP 1 TimeStamp FROM table2 b
   WHERE a.somekey = b.somekey ORDER BY TimeStamp DESC) x

Option 2, Aggregate

SELECT *
FROM
  table1 a
  LEFT JOIN
  (SELECT MAX(TimeStamp) AS maxTs, somekey FROM table2
   GROUP BY somekey) x ON a.somekey = x.somekey

Note: each table is mentioned once, no correlated subqueries

link|improve this answer
What databases would OUTER APPLY work in? – declan May 21 '11 at 18:54
@declan: Most of them, especially the 2nd one – gbn May 21 '11 at 18:55
1  
I think he means "Which RDBMS?" The answer is "MS SQL". I don't know of any other RDBMS that uses APPLY. Here is a nice discussion. Here are the MS docs. – Bacon Bits May 21 '11 at 19:00
feedback
select *
from table1 left outer join table2 a on
   table1.id = a.table1_id
where
  not exists (select 1 from table2 b where a.table1_id = b.table1_id and b.timestamp > a.timestamp)
link|improve this answer
feedback

The quickest way I know of is this:

SELECT
  A.*,
  B.SomeField
FROM
  Table1 A
  INNER JOIN (
    SELECT
      B1.A_ID,
      B1.SomeField
    FROM
      Table2 B1
      LEFT JOIN Table2 B2 ON (B1.A_ID=B2.A_ID) AND (B1.TimeStmp < B2.TimeStmp)
    WHERE
      B2.A_ID IS NULL
  ) B ON B.A_ID = A.ID
link|improve this answer
This isn't quickest with the triangular JOIN on table2 at all. – gbn May 21 '11 at 18:55
Well, this is the quickest way that I know of, or at least for a result that includes a field from the second table. – NGLN May 21 '11 at 19:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.