Section 4. Chapter 5
single
Challenge: Transaction Type Breakdown
Swipe to show menu
Task
Swipe to start coding
Write a query that, for each month, shows the count of transactions of type 'purchase', 'refund', and 'fee' as separate columns.
- For each month in the
transactionstable, count how many transactions havetransaction_typeequal to 'purchase'. - For each month, count how many transactions have
transaction_typeequal to 'refund'. - For each month, count how many transactions have
transaction_typeequal to 'fee'. - Use
TO_CHAR(transaction_date, 'YYYY-MM')to extract the month from the date, and name this columnmonth. Show one row per month, with columnspurchase_count,refund_count, andfee_count.
Solution
Everything was clear?
Thanks for your feedback!
Section 4. Chapter 5
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat