If I have multiple records in a SQL table like:
name score
...................................
sami 55
ali 140
sami 60
I want to select the highest score for each player.
The expected result would be:
ali ,140
sami, 60
Looks like it is as simple as that: