Challenge: Compare Performance Over Time
Aufgabe
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.
Lösung
War alles klar?
Danke für Ihr Feedback!
Abschnitt 2. Kapitel 6
single
Fragen Sie AI
Fragen Sie AI
Fragen Sie alles oder probieren Sie eine der vorgeschlagenen Fragen, um unser Gespräch zu beginnen
Suggested prompts:
Can you explain that in simpler terms?
What are the main benefits of this approach?
Are there any common mistakes to avoid with this?
Großartig!
Completion Rate verbessert auf 4.55
Challenge: Compare Performance Over Time
Swipe um das Menü anzuzeigen
Aufgabe
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.
Lösung
War alles klar?
Danke für Ihr Feedback!
Abschnitt 2. Kapitel 6
single