Challenge: Cumulative Sales by Region
Tarea
Swipe to start coding
Write a query to calculate the cumulative sales amount for each region, ordered by sale_date.
- Select the columns
sale_id,sale_date,employee_id,region, andamountfrom thesalestable. - Calculate a cumulative sum of the
amountcolumn for eachregion, ordered bysale_dateand then bysale_id. - Name the cumulative sum column
cumulative_sales. - Partition the calculation by
region. - Order the final results by
region, then bysale_date, and then bysale_id.
Solución
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 1. Capítulo 7
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 benefits or drawbacks?
Can you give me a real-world example?
Genial!
Completion tasa mejorada a 4.55
Challenge: Cumulative Sales by Region
Desliza para mostrar el menú
Tarea
Swipe to start coding
Write a query to calculate the cumulative sales amount for each region, ordered by sale_date.
- Select the columns
sale_id,sale_date,employee_id,region, andamountfrom thesalestable. - Calculate a cumulative sum of the
amountcolumn for eachregion, ordered bysale_dateand then bysale_id. - Name the cumulative sum column
cumulative_sales. - Partition the calculation by
region. - Order the final results by
region, then bysale_date, and then bysale_id.
Solución
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 1. Capítulo 7
single