Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top SQL Join and Grouping
00:00
5 left

Top SQL Join and Grouping

EasySQL · PostgreSQL

Problem

Nomura's internal learning platform stores students and the divisions in which they are enrolled. Write a PostgreSQL query that returns the three highest-scoring students within every division.

Requirements

  1. Join students to divisions using division_id.
  2. Rank students separately within each division by score descending, with student_id ascending as the tie-breaker.
  3. Return only ranks 1 through 3, excluding students without a matching division.
  4. Sort the final result by division name and rank.

Schema

divisions
ColumnTypeDescription
division_idPKINTEGERUnique division identifier
division_nameVARCHAR(100)Nomura division name
students
ColumnTypeDescription
student_idPKINTEGERUnique student identifier
student_nameVARCHAR(100)Student's name
division_idINTEGERReferences divisions.division_id
scoreINTEGERAssessment score
Tablesstudentsdivisions
Interviewer

Your question is Top SQL Join and Grouping. Start with the requirements and the two tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.