SQL - Set Operations
What will be the output of the following query?
Given:
table1: ('John', 'Alice')
table2: ('Alice', 'Bob')
SELECT name FROM table1 UNION ALL SELECT name FROM table2 ORDER BY name DESC;Given:
table1: ('John', 'Alice')
table2: ('Alice', 'Bob')
