Selecting the union:
select * from table1 union select * from table1_backup
What is the query to select the intersection?
SELECT * FROM table1 WHERE EXISTS (SELECT * FROM table1_backup WHERE table1.pk = table1_backup.pk)
works