The DESC command is utilized to sort retrieved data in descending order.
The provided SQL statement selects all columns from the “Customers” table, sorting them in descending order based on the “CustomerName” column.
SELECT * FROM Customers ORDER BY CustomerName DESC; |