Search code examples
sqlsortingsql-order-bymultiple-columns

SQL multiple column ordering


How can I sort multiple columns in SQL and in different directions? For instance, 'column1' would be sorted descendingly and 'column2' ascendingly.


Solution

  • 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.