Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Transaction Type Breakdown | CASE WHEN for Aggregates and Reporting
Mastering CASE WHEN in SQL
Section 4. Chapter 5
single

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 transactions table, count how many transactions have transaction_type equal to 'purchase'.
  • For each month, count how many transactions have transaction_type equal to 'refund'.
  • For each month, count how many transactions have transaction_type equal to 'fee'.
  • Use TO_CHAR(transaction_date, 'YYYY-MM') to extract the month from the date, and name this column month. Show one row per month, with columns purchase_count, refund_count, and fee_count.

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 4. Chapter 5
single

single

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

some-alt