Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Student Second Maximum Score

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

Your question is Student Second Maximum Score. Start with the requirements and the two tables 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

BharatPe's learning and onboarding program stores students and their exam attempts. Write a PostgreSQL query to identify students whose best score is the second-highest distinct score across all students.

Requirements

  1. Calculate each student's maximum non-NULL score across all attempts.
  2. Rank distinct maximum scores in descending order, so tied students share the same rank.
  3. Return every student at rank 2 with their student ID, name, and maximum score.
  4. Exclude students who have no valid scored attempt, and order the result by student_id.

Schema

students
ColumnTypeDescription
student_idPKINTEGERUnique student identifier
student_nameVARCHAR(100)Student's full name
exam_scores
ColumnTypeDescription
attempt_idPKINTEGERUnique exam attempt identifier
student_idINTEGERLogical reference to the student who made the attempt
scoreINTEGERAttempt score, which may be NULL when not evaluated
Tablesstudentsexam_scores
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results