Both sides of every transaction
Return each transaction with the accounts it touched. Give `txn_id`, `account` and `amount_cents`, ordered by transaction then account.
What a strong answer looks like
Say what the query is meant to return before you write it, and name the shape of the answer: how many rows, grouped by what. Then watch the NULLs and the duplicates, because that is where most of these are lost.
Run onlyA query runs as one statement, so there is nothing to step through. Run it and read the rows.
0:00 of about 11 min
query.sql
Expected, in this order
| txn_id | account | amount_cents |
|---|---|---|
| 100 | Cash | 50000 |
| 100 | Revenue | -50000 |
| 101 | Cash | -1500 |
| 101 | Fees | 1500 |
| 102 | Cash | 32000 |
| 102 | Revenue | -32000 |
2 more rows
Your result
Run your query to compare.
1 more set of rows are waiting. Free with an account.
Run or narrate your approach, then ask the coach.