SQL SQL MOC


The UNION command combines the result of two SELECT statements.

SELECT DISTINCT country AS "countries & currencies" FROM customers
UNION
SELECT DISTINCT currency AS "countries & currencies" FROM orders;