Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Top Two Scores Per Subject

EasySQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is SQL Top Two Scores Per Subject. Start with the requirements and the one table on the right.

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.

Problem

Zeta's assessment dashboard needs to display the strongest student results for every subject. Write a PostgreSQL query that returns the top two students in each subject from the students table.

Requirements

  1. Exclude students whose score is NULL.
  2. Rank students independently within each subject by descending score.
  3. Return at most two students per subject. If scores are tied, use the lower student_id as the deterministic tie-breaker.
  4. Sort the final output by subject, rank, and student ID.

Schema

students
ColumnTypeDescription
student_idPKINTUnique student identifier
student_nameVARCHAR(100)Student's name
subjectVARCHAR(50)Assessment subject
scoreINTAssessment score
Tablesstudents
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results