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