Easy query? Not to me.

J

John Lewis

Hi,

I have a table tScores with 3 fields: user, score and stage.
What I want is to select the 2 best scores (highest) of each user.

Ex.
tScores
---------
A, 20, 1
A, 10, 2
A, 30, 3
A, 40, 4
A, 10, 5
B, 20, 1
B, 30, 2
B, 10, 3
C, 10, 1

The result would be:

A, 40, 4
A, 30, 3
B, 30, 2
B, 20, 1
C, 10, 1

Thanks in advance,

John Lewis
 
Top