Collections:
Sort Query Output in Descending Order in Oracle
How To Sort Query Output in Descending Order in Oracle?
✍: FYIcenter.com
If you want to sort a column in descending order, you can specify the DESC keyword in the ORDER BY clause. The following SELECT statement first sorts the department in descending order, then sorts the salary in ascending order:
SQL> SELECT department_id, first_name, last_name, salary FROM employees ORDER BY department_id DESC, salary; DEPARTMENT_ID FIRST_NAME LAST_NAME SALARY ------------- --------------- --------------- ---------- Kimberely Grant 7000 110 William Gietz 8300 110 Shelley Higgins 12000 100 Luis Popp 6900 100 Ismael Sciarra 7700 100 Jose Manuel Urman 7800 100 John Chen 8200 100 Daniel Faviet 9000 ......
⇒ Count the Number of Rows with SELECT Statements in Oracle
⇐ Query Output Sorted by Multiple Columns in Oracle
2019-12-19, 1697🔥, 0💬
Popular Posts:
How To Use GO Command in "sqlcmd" in SQL Server? "sqlcmd" is a command line client application to ru...
What Is a Dynamic Performance View in Oracle? Oracle contains a set of underlying views that are mai...
How To Create a Dynamic Cursor with the DYNAMIC Option in SQL Server Transact-SQL? If the underlying...
What Are the Differences between DATE and TIMESTAMP in Oracle? The main differences between DATE and...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...