Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Month-over-Month Revenue Growth | Period-over-Period Comparisons
SQL for Finance and Accounting

bookChallenge: Month-over-Month Revenue Growth

Task

Swipe to start coding

  • Write a SQL query that calculates the revenue for each month using the revenue table.
  • For each month, also compute the change in revenue compared to the previous month.
  • Your result should include the following columns:
    • The month (as the first day of the month)
    • The total revenue for that month
    • The change in revenue compared to the previous month (can be NULL for the first month)
  • Use a window function to compare each month to its previous month.
  • Do not repeat or copy the code samples already provided in the chapter.
  • Order the results by month in ascending order.

Solution

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 2. ChapterΒ 2
single

single

Ask AI

expand

Ask AI

ChatGPT

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

close

bookChallenge: Month-over-Month Revenue Growth

Swipe to show menu

Task

Swipe to start coding

  • Write a SQL query that calculates the revenue for each month using the revenue table.
  • For each month, also compute the change in revenue compared to the previous month.
  • Your result should include the following columns:
    • The month (as the first day of the month)
    • The total revenue for that month
    • The change in revenue compared to the previous month (can be NULL for the first month)
  • Use a window function to compare each month to its previous month.
  • Do not repeat or copy the code samples already provided in the chapter.
  • Order the results by month in ascending order.

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Β 2. ChapterΒ 2
single

single

some-alt