Selecting the union:
select * from table1 union select * from table1_backup
What is the query to select the intersection?
An intersect on two identical tables a and b can be done in this manner:
SELECT a.id, a.name FROM a INNER JOIN b USING (id, name)