Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Salary Progression Analysis | Ranking and Analytic Window Functions
Window Functions in SQL
セクション 2.  7
single

single

bookChallenge: Salary Progression Analysis

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

タスク

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

Write a query to analyze how each employee's current salary compares to the earliest salary in their department. Your query must return the following columns for each employee:

  • employee_id
  • name
  • department
  • salary
  • The earliest salary in the employee's department, based on the earliest hire_date
  • The difference between the employee's salary and the department's earliest salary.

Steps:

  • Use a window function to find the earliest salary in each department, ordered by hire_date.
  • Calculate the difference between each employee's salary and the department's earliest salary.
  • Return all required columns for each employee.

解答

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

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

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

セクション 2.  7
single

single

AIに質問する

expand

AIに質問する

ChatGPT

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

some-alt