Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Students by Department
00:00
5 left

Top Students by Department

MediumSQL · PostgreSQL

Problem

Write a SQL query that identifies the top 10% of students by GPA within each department.

Use the students and departments tables. Exclude students whose GPA is NULL. For each department, return at least one student when eligible students exist, using student ID as the tie-breaker for an exact cutoff.

Output

  1. One row per selected student, with student_id, student_name, department_name, gpa, and department_rank
  2. Include only students in the top 10% of eligible students in their department
  3. Order by department_name, department_rank, and student_id

Schema

departments
ColumnTypeDescription
department_idPKINTUnique department identifier
department_nameVARCHAR(100)Department name
students
ColumnTypeDescription
student_idPKINTUnique student identifier
student_nameVARCHAR(100)Student full name
department_idINTStudent's department identifier
gpaNUMERIC(3,2)Student GPA on a 4.00 scale
Tablesstudentsdepartments
Interviewer

Your question is Top Students by Department. 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.