SQL - Set Operations
Consider these tables:
id
101
102
103
id
102
104
What does this query return?
employees:id
101
102
103
managers:id
102
104
What does this query return?
SELECT id FROM employees EXCEPT SELECT id FROM managers;