Challenge: Month-over-Month Revenue Growth
Task
Swipe to start coding
- Write a SQL query that calculates the revenue for each month using the
revenuetable. - 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
NULLfor 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?
Thanks for your feedback!
SectionΒ 2. ChapterΒ 2
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Awesome!
Completion rate improved to 4.55
Challenge: 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
revenuetable. - 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
NULLfor 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?
Thanks for your feedback!
SectionΒ 2. ChapterΒ 2
single