We wish to sort the rows of a table by the values of multiple columns.
When sorting by multiple columns, sorting is carried out in sequence where rows that have the same value for a former
column are sorted by the value of a later column. For instance, say we are sorting by two columns col_1
and col_2
,
rows that have the same value for col_1
will be sorted by the value of col_2
.
We wish to sort the rows of a table in increasing order of the values of two or more columns.
In this example, we wish to sort the rows of a table dummy_table
in ascending order of the values of a column col_1
and to sort rows that have the same value for col_1
in ascending order of the values of col_2
.
SELECT *
FROM refcon.examples.dummy_table
ORDER BY col_1, col_2;
Here is how this works:
col_1
and col_2
after the ORDER BY
clause.ORDER BY
sorts in ascending (increasing) order by default.col_1
and then rows that have the same value for col_1
are sorted in ascending
order of the values of col_2
.We wish to sort the rows of a table in descending order of the values of two or more columns.
In this example, we wish to sort the rows of a table dummy_table
in descending order of the values of a column col_1
and to sort rows that have the same value for col_1
in descending order of the values of col_2
.
SELECT *
FROM refcon.examples.dummy_table
ORDER BY col_1 DESC, col_2 DESC;
Here is how this works:
col_1
and col_2
after ORDER BY
clause.ORDER BY
sorts in ascending (increasing) order by default. To sort in descending order, we add DESC
keyword after
each column name.col_1
and then rows that have the same value for col_1
are sorted in descending
order of the values of col_2
.We wish to sort the rows of a table in ascending order of the value of one or more columns and in descending order of the values of one or more columns.
In this example, we wish to sort the rows of a table dummy_table
in ascending order of the values of a column col_1
and to sort rows that have the same value for col_1
in descending order of the values of col_2
.
SELECT *
FROM refcon.examples.dummy_table
ORDER BY col_1, col_2 DESC;
Here is how this works:
This works as described in the Descending scenario above except that we only add DESC
after col_2
because we wish
to sort in ascending order of col_1
and in descending order of col_2
.