Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Build Leaderboards and Sequences | Window Functions for Trends and Rankings
Practice
Projects
Quizzes & Challenges
Quizzes
Challenges
/
SQL for Business Intelligence Analysts

bookChallenge: 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 sales table.
  • 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_id
    • total_sales (the sum of the amount field for each employee)
    • sales_rank (the rank assigned by your window function).

Solution

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 3. ChapterΒ 4
single

single

Ask AI

expand

Ask AI

ChatGPT

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?

close

bookChallenge: 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 sales table.
  • 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_id
    • total_sales (the sum of the amount field for each employee)
    • sales_rank (the rank assigned by your window function).

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 3. ChapterΒ 4
single

single

some-alt