SELECT city FROM customers ORDER BY city;
SELECT DISTINCT city FROM customers;
SELECT city, country FROM customers ORDER BY country;
SELECT company FROM customers;
SELECT DISTINCT company FROM customers;