I have a simple table:
tags(title, popularity)
I'm trying to do a query that returns the 5 most popular tags but ordered (alphabetically) by title.
select * from tags order by popularity DESC limit 5;
returns the tags I want but I don't know how to order it alphabetically. Can someone help?









Bookmarks