SQL multiple column ordering

sqlsql-order-by

How can I sort by multiple columns in SQL and in different directions. column1 would be sorted descending, and column2 ascending.

Best Answer

ORDER BY column1 DESC, column2

This sorts everything by column1 (descending) first, and then by column2 (ascending, which is the default) whenever the column1 fields for two or more rows are equal.