Answers for "order sql table by two columns"

SQL
8

sql order by multiple columns

SELECT * FROM table_name ORDER BY col1 ASC;				-- ASCending is default
SELECT * FROM table_name ORDER BY col1 DESC;			-- DESCending
SELECT * FROM table_name ORDER BY col1 DESC, col2;		-- col1 DESC then col2 ASC
Posted by: Guest on May-09-2021
5

sort order on two columns sql

Sort by multiple column : ORDER BY column1 DESC, column2
Posted by: Guest on March-03-2020

Code answers related to "order sql table by two columns"

Code answers related to "SQL"

Browse Popular Code Answers by Language