SQL - Set Operations
Consider two tables:
What will be the output of:
Employees: emp_id
101
102
103Contractors: emp_id
102
103
104What will be the output of:
SELECT emp_id FROM Employees UNION ALL SELECT emp_id FROM Contractors;