These are set operations that combine the results of two queries. UNION combines rows (removing duplicates), INTERSECT returns rows in both, EXCEPT returns rows in the first but not the second. They operate on whole result sets vertically (stacking rows), unlike JOINs (which combine columns horizontally).
