Sql Query to retrieve data using Order By in Descending Order


To retrieve a record in descending order from the existing created table. Then we can use an ' ORDER BY ' Clause with DESC Attribute.

Enter - Select * from table_name;
SQL Query
SELECT first_name FROM employees ORDER BY first_name DESC;
Output