> This problem is paper-only - see explanation for the canonical SQL solution.
Given `Orders(id, order_date, total)` where `order_date` is an ISO date string, return the **average order value per calendar month** rounded to 2 decimals. Sort by month ascending.
**For the auto-grader:** return `[{ month, avg_total }]` where `month` is `"YYYY-MM"`.