Oracle SQL,PL/SQL

Sorting Data Order By Clause in Oracle SQL

Order By Sorting Data in Oracle SQL
Written by shohal

ORDER BY keyword is used to sort the result-set in ascending or descending order.

ORDER BY Example

SELECT * FROM Customers
ORDER BY Department;

ORDER BY DESC Example

SELECT * FROM Customers
ORDER BY Department DESC;

About the author

shohal

Leave a Comment