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