The following SQL statement selects all customers from the "Customers" table, sorted by the "Country" column:
Example
SELECT * FROM Customers
ORDER BY Country;
SELECT * FROM Customers
WHERE Country='Germany'
AND (City='Berlin' OR City='München');
Try it Yourself »