Oracle Reverse Sorting: ORDER BY DESC Guide
In Oracle database, you can use the ORDER BY clause with the DESC keyword to achieve reverse sorting. Here is an example:
SELECT column1, column2
FROM table
ORDER BY column1 DESC;
In the above example, column1 will be sorted in descending order. You can use the DESC keyword on any column you want to sort in reverse order.