Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top 3 Marks Per Student
00:00
5 left

Top 3 Marks Per Student

EasySQL · PostgreSQL

Problem

The MakeMyTrip QA team wants to identify the strongest performers in its QA Automation assessment. Write a PostgreSQL query that returns every student whose mark is among the top three distinct marks, including all students tied at those marks.

Requirements

  1. Filter results to the QA Automation assessment and exclude NULL marks.
  2. Rank distinct mark values from highest to lowest using a window function.
  3. Join the marks to students and return the student ID, name, assessment name, marks, and rank.
  4. Sort by marks descending, then student ID ascending.

Schema

students
ColumnTypeDescription
student_idPKINTUnique student identifier
student_nameVARCHAR(100)Student's full name
cityVARCHAR(50)Student's registered city
student_marks
ColumnTypeDescription
mark_idPKINTUnique mark record identifier
student_idINTReferences students.student_id
assessment_nameVARCHAR(100)Name of the assessment
marksINTMarks earned in the assessment
attempt_noINTAssessment attempt number
Tablesstudentsstudent_marks
Interviewer

Your question is Top 3 Marks Per Student. 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.