Search the Whole World Here.,.,

SQL - ORDER BY DESC Example


The following SQL statement selects all customers from the "Customers" table, sorted DESCENDING by the "Country" column:

Example

SELECT * FROM Customers
ORDER BY Country DESC;
Try it Yourself »


EmoticonEmoticon