English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
The DESC command is used to sort the returned data in descending order.
The following SQL statement selects all columns from the 'Customers' table and sorts them in descending order by the 'CustomerName' column:
SELECT * FROM Customers ORDER BY CustomerName DESC;