How can I sort multiple columns in SQL and in different directions? For instance, ‘column1’ would be sorted descendingly and ‘column2’ ascendingly.
How can I sort multiple columns in SQL and in different directions? For instance,
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This sorts everything by
column1(descending) first, and then bycolumn2(ascending, which is the default) whenever thecolumn1fields for two or more rows are equal.