I am trying to sort by multiple columns in SQL, and in different directions. column1 would be sorted descending, and column2 ascending.
column1
column2
How
SELECT * FROM mytable ORDER BY column1 DESC, column2 ASC