Challenge: Salary Progression Analysis
Task
Swipe to start coding
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_idnamedepartmentsalary- 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.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 2. ChapterΒ 7
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Suggested prompts:
Can you explain this in simpler terms?
What are the main points I should remember?
Can you give me an example?
Awesome!
Completion rate improved to 4.55
Challenge: Salary Progression Analysis
Swipe to show menu
Task
Swipe to start coding
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_idnamedepartmentsalary- 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.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 2. ChapterΒ 7
single