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

bookChallenge: Month-over-Month Revenue Growth

Tâche

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

Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 2. Chapitre 2
single

single

Demandez à l'IA

expand

Demandez à l'IA

ChatGPT

Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion

close

bookChallenge: Month-over-Month Revenue Growth

Glissez pour afficher le menu

Tâche

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 desktopPassez à un bureau pour une pratique réelleContinuez d'où vous êtes en utilisant l'une des options ci-dessous
Tout était clair ?

Comment pouvons-nous l'améliorer ?

Merci pour vos commentaires !

Section 2. Chapitre 2
single

single

some-alt