PostgreSQL - Set Operations and Advanced Queries
Given these tables:
id
1
2
3
id
2
3
4
What is the result of:
table_a:id
1
2
3
table_b:id
2
3
4
What is the result of:
SELECT id FROM table_a INTERSECT SELECT id FROM table_b;