The following SQL statement uses UNION ALL to select all (duplicate values also) cities from the "Customers" and "Suppliers" tables:
Example
SELECT City FROM CustomersUNION ALLSELECT City FROM SuppliersORDER BY City;
Try...
The following SQL statement selects all the different cities (only distinct values) from the "Customers" and the "Suppliers" tables:
Example
SELECT City FROM CustomersUNIONSELECT City FROM SuppliersORDER BY City;
Try...