UNION joins two results and remove duplicates, while UNION ALL does not remove duplicates. UNION also sort the final output.
UNION
UNION ALL
W
I assume your tables are table1 and table2 respectively, and your solution is;
(select * from table1 MINUS select * from table2) UNION ALL (select * from table2 MINUS select * from table1)