Well, you could use
Code:
Select User_ID, Max(Exp_amt)
From YourTable
Where User_ID = 'insert reqd id here'
Or if you want every user listed
Code:
Select User_ID, Max(Exp_amt)
From YourTable
Group By User_ID
Order By User_ID desc
HTH
There are two secrets to success in this world:
1. Never tell everything you know