SQL - Set Operations
Given two tables:
What is the result of:
table1 with values (1, 'Anna'), (2, 'Ben')table2 with values (2, 'Ben'), (3, 'Cara')What is the result of:
SELECT id, name FROM table1 UNION SELECT id, name FROM table2 ORDER BY id;?