Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Top Two Scores Per Subject
00:00
5 left

SQL Top Two Scores Per Subject

EasySQL · PostgreSQL

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
Interviewer

Your question is SQL Top Two Scores Per Subject. Start with the requirements and the one table 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.