You can use the limit, and try the code given below:
Query:
select *
from scores
order by score desc
limit 10
Note: If performance is not in the priority then you can look for an index on the score.
In version 8.4 and above, you can use the standard (SQL:2008) and fetch first like this:
Query:
select *
from scores
order by score desc
fetch first 10 rows only