I'm trying to order table by most points then put it in alphabetical order. I have gotten this far but I cannot get it working.
SELECT category FROM (
SELECT category from table ORDER BY points DESC LIMIT 35
) a
ORDER a.by category LIKE 'A%'
What am I doing wrong?
Thank you
