Combines the results from 2 or more SELECT statements and returns only distinct values. Example: Returns the cities from the events and subscribers tables. SELECT city FROM events UNION SELECT city from subscribers;