Explain the difference between UNION and UNION ALL.
Asked in the Conceptual questions stage. Using the provided orders table, demonstrate the distinction by combining cities from delivered and returned orders.
city.| Column | Type | Description |
|---|---|---|
| order_idPK | INT | Unique order identifier |
| customer_id | INT | Customer identifier |
| city | VARCHAR(100) | Customer delivery city |
| order_status | VARCHAR(30) | Current order status |