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...
|
2 | added 3 characters in body | ||
Should do the job for you... though don't forget to create indexes... |
||||
|
1 |
|
||
Should do the job for you... though don't forget to create indexes... |
||||