SQL - Set Operations
Given two tables:
What is the result of:
Table A: id
1
2
3Table B: id
2
3
4What is the result of:
SELECT id FROM A UNION SELECT id FROM B;Table A: id
1
2
3Table B: id
2
3
4SELECT id FROM A UNION SELECT id FROM B;15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions