I have a table with 5 columns. When I list the table, I want to order by one column so that the types are grouped together and then order them alphabetical so that they are easy to find.
Is it possible to ORDER
by two different columns?
Here is my current select:
$query_rs_cms = "SELECT * FROM games ORDER BY type ASC";
I guess what I'm looking for is something like:
SELECT *
FROM games
ORDER BY type THEN ORDER BY title ASC";