SELECT * FROM `scores` natural join users
GROUP BY user_id,`level_id`
order by level_id,time_to_win
How do i limit the results such that for each level_id it will only put top 10 (or less) in the results?
SELECT * FROM `scores` natural join users
GROUP BY user_id,`level_id`
order by level_id,time_to_win
How do i limit the results such that for each level_id it will only put top 10 (or less) in the results?