views:

25

answers:

1

I have table:

name        marks

aaa         100
aaa         56
aaa         120
bbb          56
bbb          60

The result should be:
aaa         120
bbb          60

ie unique name with maximum marks. Is there any query in mysql?

+1  A: 
 SELECT name, MAX(marks) marks
 from table
 group by name
Michael Pakhantsov