Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top 10 Students by GPA SQL
00:00
5 left

Top 10 Students by GPA SQL

EasySQL · PostgreSQL

Problem

Write a SQL query to extract the top 10 students by GPA from a database.

Use the students table. Include only students with a recorded GPA and return the highest GPAs first. Break GPA ties by ascending student_id.

Output

  1. One row per student, with columns student_id, student_name, and gpa.
  2. Include at most 10 students, ordered by gpa descending and student_id ascending for ties.

Schema

students
ColumnTypeDescription
student_idPKINTUnique identifier for the student
student_nameVARCHAR(100)Full name of the student
gpaNUMERIC(3,2)Cumulative grade point average
Tablesstudents
Interviewer

Your question is Top 10 Students by GPA SQL. 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.