Direction: Choose the correct option
Q1.
What does UNION do?
Direction: Choose the correct option
Q2.
SELECT city FROM customers UNION SELECT city FROM suppliers;What will this return?Direction: Choose the correct option
Q3.
What's the difference between UNION and UNION ALL?
Direction: Choose the correct option
Q4.
What rules must UNION queries follow?
Direction: Choose the correct option
Q5.
SELECT name, 'Customer' AS type FROM customers UNION SELECT name, 'Supplier' AS type FROM suppliers ORDER BY name;Where is ORDER BY applied?