Currently I'm in need of another query. I got this one:

Code:
select player_id, MIN(time_played) from checkpoint_statistics WHERE cp_id = 1071 GROUP BY player_id ORDER BY MIN(time_played) LIMIT 10
It returns the top 10 players for a certain checkpoint {id, time_played} and i'd like to link said id to a playername in another table

Any suggestions?