Selecting the union:
select * from table1 union select * from table1_backup
What is the query to select the intersection?
subqueries?! really?
to get the intersection of table1 and table2:
SELECT * FROM table1, table2 WHERE table1.pk=table2.pk;