Write a SQL query to analyze creator support ticket volume by region and week, and identify the top three regions with the largest week-over-week increase.
Use the provided creator region and support ticket tables. Compare each region with its immediately preceding calendar week.
region, week_start, current_ticket_volume, prior_ticket_volume, and week_over_week_increase.| Column | Type | Description |
|---|---|---|
| ticket_idPK | INT | Unique support ticket identifier |
| creator_id | INT | Creator associated with the ticket |
| created_at | DATE | Date the support ticket was created |
| Column | Type | Description |
|---|---|---|
| creator_idPK | INT | Unique creator identifier |
| region | VARCHAR(100) | Creator geographic region |