Challenge: Build Leaderboards and Sequences
Task
Swipe to start coding
Write a SQL query to identify the top 2 employees by their total sales amount.
- For each employee, calculate the total sales amount from the
salestable. - Assign a rank to each employee based on their total sales amount, with the highest sales getting rank 1.
- Only include employees who are ranked in the top 2.
- Display the following columns in the result:
employee_idtotal_sales(the sum of theamountfield for each employee)sales_rank(the rank assigned by your window function).
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 3. ChapterΒ 4
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 some examples related to this topic?
Where can I learn more about this?
Awesome!
Completion rate improved to 5.56
Challenge: Build Leaderboards and Sequences
Swipe to show menu
Task
Swipe to start coding
Write a SQL query to identify the top 2 employees by their total sales amount.
- For each employee, calculate the total sales amount from the
salestable. - Assign a rank to each employee based on their total sales amount, with the highest sales getting rank 1.
- Only include employees who are ranked in the top 2.
- Display the following columns in the result:
employee_idtotal_sales(the sum of theamountfield for each employee)sales_rank(the rank assigned by your window function).
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 3. ChapterΒ 4
single