*
the UNION operator on these two tables
SELECT * FROM Employee_details1
UNION
SELECT * FROM Employee_details2
-- 4. Apply the INTERSECT operator on these two tables
SELECT * FROM Employee_details1
INTERSECT
SELECT * FROM Employee_details2
-- 5. Apply the EXCEPT operator on these two tables
SELECT * FROM Employee_details1
EXCEPT
SELECT * FROM Employee_details2