SQL - Set Operations
Given two tables:
id
1
2
3
id
2
3
4
What is the result of:
table1:id
1
2
3
table2:id
2
3
4
What is the result of:
SELECT id FROM table1 EXCEPT SELECT id FROM table2;