SQL ORDER BY DESC: Sort Data Descending
In SQL, you can use the DESC keyword to sort in descending order using ORDER BY. For example:
SELECT * FROM table_name
ORDER BY column_name DESC;
The result set will be arranged in descending order according to the specified column. If you want to arrange multiple columns in descending order at the same time, you can specify multiple column names in the ORDER BY clause and add the DESC keyword after each column name.