Selecting the union:
select * from table1 union select * from table1_backup
What is the query to select the intersection?
select distinct * from (select * from table1 union select * from table1_backup)