27.02.2018, 01:15
Like this?
Selects and orders top 10 players by score asc (1, 2, 3 etc).
EDIT: Found a useful tutorial on the SQL Side of it here. Click next page, and it will teach you all you need to know.
pawn Код:
SELECT `username`,`score` FROM `players` ORDER BY `score` ASC LIMIT 10
EDIT: Found a useful tutorial on the SQL Side of it here. Click next page, and it will teach you all you need to know.