Challenge: Month-over-Month Revenue Growth
Tarea
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.
Solución
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 2. Capítulo 2
single
Pregunte a AI
Pregunte a AI
Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla
Suggested prompts:
Can you explain this in simpler terms?
What are the main points I should remember?
Can you give me an example?
Genial!
Completion tasa mejorada a 4.55
Challenge: Month-over-Month Revenue Growth
Desliza para mostrar el menú
Tarea
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.
Solución
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 2. Capítulo 2
single