Challenge: Detect Duplicate Transactions
Swipe to start coding
Write an SQL query to identify accounts where the recorded balance in the balances table does not match the sum of all their transactions in the bank_transactions table. This helps ensure that account balances reflect the actual transaction history.
- Calculate the net transaction sum for each account by summing deposits and subtracting withdrawals from the
bank_transactionstable. - Compare this calculated sum to the balance recorded in the balances table for each account.
- Return the
account_id, the recordedbalance, and the calculated transaction sum for any account where these values do not match.
Solution
Thanks for your feedback!
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Can you explain this in simpler terms?
What are the main points I should remember?
Can you give me an example?
Awesome!
Completion rate improved to 4.55
Challenge: Detect Duplicate Transactions
Swipe to show menu
Swipe to start coding
Write an SQL query to identify accounts where the recorded balance in the balances table does not match the sum of all their transactions in the bank_transactions table. This helps ensure that account balances reflect the actual transaction history.
- Calculate the net transaction sum for each account by summing deposits and subtracting withdrawals from the
bank_transactionstable. - Compare this calculated sum to the balance recorded in the balances table for each account.
- Return the
account_id, the recordedbalance, and the calculated transaction sum for any account where these values do not match.
Solution
Thanks for your feedback!
single