vote up 2 vote down star
2

I have a table that records a sequence of actions with a field that records the sequence order:

user    data    sequence
1       foo     0
1       bar     1
1       baz     2
2       foo     0
3       bar     0
3       foo     1

Selecting the first item for each user is easy enough with WHERE sequence = '0' but is there a way to select the last item for each user in SQL?

The result I am after should look like this:

user    data    sequence
1       baz     2
2       foo     0
3       foo     1

I'm using MySQL if there are any implementation specific tricksters answering.

flag

2 Answers

vote up 3 vote down check

This sql will return the record with the highest sequence value for each user:

select a.user, a.data, a.sequence
from table as a
    inner join (
        select user, max(sequence) as 'last'
        from table 
        group by user) as b
    on a.user = b.user and 
       a.sequence = b.last
link|flag
Hmm, I'd have expected "inner join (select user, max(sequence) as 'last' from table group by user) as b on a.user = b.user". Different interpretations of the question, I guess. – ephemient Oct 6 '08 at 14:40
epheminent is technically correct (the best kind of correct). – Colonel Sponsz Oct 6 '08 at 14:48
Ah, you're right, thanks. He's grouped by user and only shown the last data. – Keith Oct 6 '08 at 14:49
Now corrected, grouped by user – Keith Oct 6 '08 at 14:50
In translating the meta variables into my data I had ended up with the right result anyway. – Colonel Sponsz Oct 6 '08 at 14:52
vote up 0 vote down

You can't do this with:

select   user,
         data,
         max(sequence)
from     table
group by user,
         data

?

link|flag
No - that returns each line of the table. – Colonel Sponsz Oct 6 '08 at 15:07
ah right. i'll try again ... – David Aldridge Oct 6 '08 at 16:59

Your Answer

Get an OpenID
or

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