A sales analytics team needs a report of customer activity during a fixed 30-day reporting period. Write a SQL query to calculate each customer's total sales volume and transaction count for transactions from August 16, 2026 through September 15, 2026, inclusive.
customer_id, total_sales_volume, and transaction_count.amount is NULL in the transaction count, but treat NULL amounts as contributing zero to total sales volume.customer_id in ascending order.| Column | Type | Description |
|---|---|---|
| transaction_idPK | INT | Unique transaction identifier |
| customer_id | INT | Identifier of the customer who made the transaction |
| transaction_at | TIMESTAMP | Timestamp when the transaction occurred |
| amount | NUMERIC(12,2) | Sales amount for the transaction |