Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Year-over-Year Revenue Comparison | Period-over-Period Comparisons
SQL for Finance and Accounting
セクション 2.  4
single

single

bookChallenge: Year-over-Year Revenue Comparison

メニューを表示するにはスワイプしてください

タスク

スワイプしてコーディングを開始

Your task is to calculate the year-over-year (YoY) revenue growth percentage for each month using the revenue table.

  • Group the revenue data by year and month.
  • Use a window function such as LAG() to get the previous year's revenue for the same month.
  • Calculate the YoY growth percentage using the formula: (current_year_revenue - last_year_revenue) / last_year_revenue * 100.
  • Your query should return the following columns:
    • year: the year of the revenue period.
    • month: the month of the revenue period.
    • total_revenue: total revenue for that year and month.
    • last_year_revenue: total revenue for the same month in the previous year.
    • yoy_growth_percent: the YoY growth percentage, as a numeric value (can be decimal).
  • Only include rows where last_year_revenue is not null (i.e., exclude the first year for each month).

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 2.  4
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt