show/hide this revision's text 2 added 3 characters in body
SELECT user_id, MAX(score) AS score
FROM `scores` 
user_scores 
GROUP BY user_id
ORDER BY score DESC
LIMIT 5

Should do the job for you... though don't forget to create indexes...

show/hide this revision's text 1
SELECT user_id, MAX(score) AS score FROM `scores` 
GROUP BY user_id
ORDER BY score DESC
LIMIT 5

Should do the job for you... though don't forget to create indexes...