Imagine I've a table 'users' with two fields: 'age' and 'name'. I want to retrieve the top ten older users and then I want this list of ten sorted by name.
Is it possible to do it with MySQL?
I've tried this: (doesn't work)
SELECT * FROM users order by age, name limit 10