Your question is Summarize Transaction Volume by Bank. Start with the requirements and the two tables on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Argus Information & Advisory Services needs a quarterly transaction summary for activity monitored through its Argus platform. Write a PostgreSQL query that reports transaction volume by bank for completed transactions from January 1 through March 31, 2025.
| Column | Type | Description |
|---|---|---|
| bank_idPK | INTEGER | Unique bank identifier |
| bank_name | VARCHAR(100) | Bank name |
| region | VARCHAR(50) | Operating region |
| Column | Type | Description |
|---|---|---|
| transaction_idPK | INTEGER | Unique transaction identifier |
| bank_id | INTEGER | Bank associated with the transaction |
| transaction_date | DATE | Transaction processing date |
| status | VARCHAR(20) | Transaction processing status |
| amount | NUMERIC(14,2) | Transaction amount |