What techniques do you use for data visualization?
For this SQL exercise, prepare a visualization-ready summary from the available customer and order data. Include only completed orders and preserve NULL values where the source data produces them.
region, month, completed_orders, revenue, and average_order_value.month ascending, then region ascending, with NULL regions first.| Column | Type | Description |
|---|---|---|
| customer_idPK | INT | Unique customer identifier |
| customer_name | VARCHAR(100) | Customer display name |
| region | VARCHAR(50) | Customer sales region |
| Column | Type | Description |
|---|---|---|
| order_idPK | INT | Unique order identifier |
| customer_id | INT | Customer associated with the order |
| order_date | DATE | Date the order was placed |
| status | VARCHAR(20) | Order processing status |
| amount | NUMERIC(10,2) | Order amount |