Challenge: Compare Performance Over Time
Tehtävä
Swipe to start coding
Write a query to display each employee's performance score for every review and show the difference in score compared to their previous review.
- Select
employee_id,name,review_date, andscorefor each performance review. - Use the
LAGwindow function to access the previous review's score for the same employee, ordered byreview_date. - Calculate the difference between the current score and the previous score for each review.
- Name the difference column
score_difference. - Ensure results are ordered by
employee_idandreview_date.
Ratkaisu
Oliko kaikki selvää?
Kiitos palautteestasi!
Osio 2. Luku 6
single
Kysy tekoälyä
Kysy tekoälyä
Kysy mitä tahansa tai kokeile jotakin ehdotetuista kysymyksistä aloittaaksesi keskustelumme
Mahtavaa!
Completion arvosana parantunut arvoon 4.55
Challenge: Compare Performance Over Time
Pyyhkäise näyttääksesi valikon
Tehtävä
Swipe to start coding
Write a query to display each employee's performance score for every review and show the difference in score compared to their previous review.
- Select
employee_id,name,review_date, andscorefor each performance review. - Use the
LAGwindow function to access the previous review's score for the same employee, ordered byreview_date. - Calculate the difference between the current score and the previous score for each review.
- Name the difference column
score_difference. - Ensure results are ordered by
employee_idandreview_date.
Ratkaisu
Oliko kaikki selvää?
Kiitos palautteestasi!
Osio 2. Luku 6
single