Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this table for documents (simplified version here):

+------+-------+--------------------------------------+
| id   | rev   | content                              |
+------+-------+--------------------------------------+
| 1    | 1     | ...                                  |
| 2    | 1     | ...                                  |
| 1    | 2     | ...                                  |
| 1    | 3     | ...                                  |
+------+-------+--------------------------------------+

How do I select one row per id and only the greatest rev?
With the above data, the result should contain two rows: [1, 3, ...] and [2, 1, ..]. I'm using MySQL.

Currently I use checks in the while loop to detect and over-write old revs from the resultset. But is this the only method to acheive the result? Isn't there a SQL solution?

Update
As the answers suggest, there is a SQL solution, and here a sqlfiddle demo.

share|improve this question
Do you need the corresponding content field for the row? – Mark Byers Oct 12 '11 at 19:45
Yes, and that would pose no problem, I have cut out many columns which I'd be adding back. – Majid Fouladpour Oct 12 '11 at 19:48
@MarkByers I have edited my answer to comply with OP needs. Since I was at it, I decided to write a more comprehensive answer on the greatest-n-per-group topic. – Adrian Carneiro Oct 12 '11 at 20:57

4 Answers

up vote 110 down vote accepted

At first glance...

All you need is a GROUP BY clause with the MAX aggregate function:

select id, max(rev)
from YourTable
group by id

It's never that simple, is it?

I just noticed you need the content column as well.

This is a very common question in SQL: find the whole data for the row with some max value in a column per some group identifier. I heard that a lot during my career. Actually, it was one the questions I answered in my current job's technical interview.

It is, actually, so common that StackOverflow community has created a single tag just to deal with questions like that: .

Basically, you have two approaches to solve that problem:

Joining with simple group-identifier, max-value-in-group Sub-query

In this approach, you first find the group-identifier, max-value-in-group (already solved above) in a sub-query. Then you join your table to the sub-query with equality on both group-identifier and max-value-in-group:

select yt.id, yt.rev, yt.contents
from YourTable yt
inner join(
    select id, max(rev) rev
    from YourTable
    group by id
) ss on yt.id = ss.id and yt.rev = ss.rev

Left Joining with self, tweaking join conditions and filters

In this approach, you left join the table with itself. Equality, of course, goes in the group-identifier. Then, 2 smart moves:

  1. The second join condition is having left side value less than right value
  2. When you do step 1, the row(s) that actually have the max value will have NULL in the right side (it's a LEFT JOIN, remember?). Then, we filter the joined result, showing only the rows where the right side is NULL.

So you end up with:

select yt1.*
from yourtable yt1
left outer join yourtable yt2
on (yt1.id = yt2.id and yt1.rev < yt2.rev)
where yt2.id is null;

Conclusion

Both approaches bring the exact same result.

If you have two rows with max-value-in-group for group-identifier, both rows will be in the result in both approaches.

Both approaches are SQL ANSI compatible, thus, will work with your favorite RDBMS, regardless of its "flavor".

Both approaches are also performance friendly, however your mileage may vary (RDBMS, DB Structure, Indexes, etc.). So when you pick one approach over the other, benchmark. And make sure you pick the one which make most of sense to you.

share|improve this answer
If you need content also then select T1.* from YourTable T1 INNER JOIN (select id, max(rev) as rev from YourTable group by id) as T2 ON T1.id=T2.id and T1.rev=T2.rev – Imdad Oct 12 '11 at 19:50
@Imdad I posted that before you commented but thank you :) – Adrian Carneiro Oct 12 '11 at 19:52
1  
I know that MySQL allows you to add non aggregate fields to a "grouped by" query, but I find that kinda pointless. Try running this select id, max(rev), rev from YourTable group by id and you see what I mean. Take your time and try to understand it – Adrian Carneiro Oct 12 '11 at 20:05
3  
This is such a great answer - I hope more people find this in their search for query optimization nirvana. – AndrewPK Oct 9 '12 at 3:56
1  
@JasonMcCarrell I'm glad this answer helped you! I get your point, this is why I called it group_identifier, which could be one or more columns. In your case, group_identifier is the combination of name and age – Adrian Carneiro Dec 12 '12 at 16:50
show 10 more comments

You can do it using IN

try this:

SELECT * 
FROM t1 WHERE (id,rev) IN 
( SELECT id, MAX(rev)
  FROM t1
  GROUP BY id
)
share|improve this answer
2  
Curious - which database engine can we use this type of WHERE clause in? This is not supported in SQL Server. – Kash Nov 17 '11 at 17:04
oracle & mysql (not sure about other databases sorry) – Kevin Burton Nov 17 '11 at 18:03

Something like this?

SELECT yourtable.id, rev, content
FROM yourtable
INNER JOIN (
    SELECT id, max(rev) as maxrev FROM yourtable
    WHERE yourtable
    GROUP BY id
) AS child ON (yourtable.id = child.id) AND (yourtable.rev = maxrev)
share|improve this answer
The join-less ones wouldn't cut it? – Majid Fouladpour Oct 12 '11 at 19:51
If they work, then they're fine too. – Marc B Oct 12 '11 at 19:54

Use query:

SELECT MAX(rev) from table group by id;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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