> This problem is paper-only - see explanation for the canonical SQL solution.
Given `Orders(id, customer_id, total)`, return each customer_id with their order count. Sort by customer_id ascending. Customers with no orders are not in the input and not in the output.
**For the auto-grader:** return `[{ customer_id, order_count }]`.