Selecting the union:
select * from table1 union select * from table1_backup
What is the query to select the intersection?
In SQL Server intersect
select * from table1 intersect select * from table1_backup