Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lära Challenge: Top Sales per Region | Introduction to Window Functions
Practice
Projects
Quizzes & Challenges
Frågesporter
Challenges
/
Window Functions in SQL

bookChallenge: Top Sales per Region

To solve this task, you need to identify the highest sale amount and the corresponding employee for each region in the sales table. You will use the ROW_NUMBER() window function to achieve this efficiently.

Step-by-step approach

  1. Assign a row number within each region:

    • Use ROW_NUMBER() as a window function to assign a unique number to each sale within its region.
    • Partition the data by the region column so that numbering restarts for each region.
    • Order the rows within each region by the amount column in descending order; this places the highest sale at the top for each region.
  2. Select only the top sale per region:

    • After assigning row numbers, the row with ROW_NUMBER() = 1 in each region will represent the highest sale for that region.
    • Use a subquery or common table expression (CTE) to filter and keep only those rows where the row number is 1.
  3. Return the required columns:

    • Select the region, employee_id, and amount columns for the top sale in each region.
Uppgift

Swipe to start coding

Write a query to find the highest sale amount and corresponding employee for each region using window functions.

  • Assign a row number to each sale within its region, ordering by the sale amount in descending order.
  • Select the region, employee ID, and sale amount for the row with the highest sale in each region.

Lösning

Var allt tydligt?

Hur kan vi förbättra det?

Tack för dina kommentarer!

Avsnitt 1. Kapitel 4
single

single

Fråga AI

expand

Fråga AI

ChatGPT

Fråga vad du vill eller prova någon av de föreslagna frågorna för att starta vårt samtal

close

bookChallenge: Top Sales per Region

Svep för att visa menyn

To solve this task, you need to identify the highest sale amount and the corresponding employee for each region in the sales table. You will use the ROW_NUMBER() window function to achieve this efficiently.

Step-by-step approach

  1. Assign a row number within each region:

    • Use ROW_NUMBER() as a window function to assign a unique number to each sale within its region.
    • Partition the data by the region column so that numbering restarts for each region.
    • Order the rows within each region by the amount column in descending order; this places the highest sale at the top for each region.
  2. Select only the top sale per region:

    • After assigning row numbers, the row with ROW_NUMBER() = 1 in each region will represent the highest sale for that region.
    • Use a subquery or common table expression (CTE) to filter and keep only those rows where the row number is 1.
  3. Return the required columns:

    • Select the region, employee_id, and amount columns for the top sale in each region.
Uppgift

Swipe to start coding

Write a query to find the highest sale amount and corresponding employee for each region using window functions.

  • Assign a row number to each sale within its region, ordering by the sale amount in descending order.
  • Select the region, employee ID, and sale amount for the row with the highest sale in each region.

Lösning

Switch to desktopByt till skrivbordet för praktisk övningFortsätt där du är med ett av alternativen nedan
Var allt tydligt?

Hur kan vi förbättra det?

Tack för dina kommentarer!

Avsnitt 1. Kapitel 4
single

single

some-alt