Hi,
So basically I need the SQL query that retrieves from a table 'users' the 10 highest values from the field 'points'.
Thanks for any help, ~Oni.
SELECT points FROM users ORDER BY desc LIMIT 10;