SyntaxFix
Write A Post
Hire A Developer
Questions
Seems you are looking for ORDER BY in DESCending order with LIMIT clause:
ORDER BY
DESC
SELECT * FROM scores ORDER BY score DESC LIMIT 10
Of course SELECT * could seriously affect performance, so use it with caution.
SELECT *