SQL - Set Operations
Given two tables:
What will be the result of
Employees_A: {1, 2, 3}Employees_B: {3, 4, 5}What will be the result of
SELECT id FROM Employees_A UNION SELECT id FROM Employees_B;?