-- Select all countries from where customers OR suppliers
-- UNION ALL - for not only unique
SELECT country
FROM customers
UNION
SELECT country
FROM suppliers
-- Select all countries from where customers AND suppliers
SELECT country
FROM customers
INTERSECT
SELECT country
FROM suppliers
-- Select all unique countries from where customers BUT NOT suppliers
-- EXCEPT ALL - for not only unique
SELECT country
FROM customers
EXCEPT
SELECT country
FROM suppliers