Your question is SQL Client Transactions With Missing Values. Start with the requirements and the three 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.
The JPMorganChase Data Analytics team needs a client-level summary of activity recorded across Chase client, account, and transaction tables. Write a PostgreSQL query for completed transactions during the first quarter of 2025.
Unclassified.client_id ascending.| Column | Type | Description |
|---|---|---|
| client_idPK | INT | Unique Chase client identifier |
| client_name | VARCHAR(100) | Client's display name |
| client_segment | VARCHAR(40) | Client coverage segment |
| Column | Type | Description |
|---|---|---|
| account_idPK | INT | Unique account identifier |
| client_id | INT | Owning client identifier |
| account_type | VARCHAR(40) | Account category |
| Column | Type | Description |
|---|---|---|
| transaction_idPK | INT | Unique transaction identifier |
| account_id | INT | Related account identifier |
| transaction_date | DATE | Transaction posting date |
| status | VARCHAR(20) | Processing status |
| amount | NUMERIC(12,2) | Transaction amount |