The following SQL statement selects all customers from the "Customers" table, sorted DESCENDING by the "Country" column:
SELECT * FROM Customers
ORDER BY Country DESC;
ORDER BY Country DESC;
Practice Excercise Practice now
The following SQL statement selects all customers from the "Customers" table, sorted DESCENDING by the "Country" column:
Practice Excercise Practice now