Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL for Student Subject Totals

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

Your question is SQL for Student Subject Totals. 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

American Airlines training analytics tracks student performance across multiple subjects. Write a PostgreSQL query to identify students whose sum of all recorded subject scores is greater than 200.

Requirements

  1. Join students with subject_scores using the student identifier.
  2. Calculate each student's total score across all recorded subjects.
  3. Return the student ID, student name, and total score only for totals greater than 200.
  4. Sort the results by total score descending, then student ID ascending. Treat NULL scores as contributing zero, and exclude students with no matching score records.

Schema

students
ColumnTypeDescription
student_idPKINTEGERUnique student identifier
student_nameVARCHAR(100)Student's full name
subject_scores
ColumnTypeDescription
score_idPKINTEGERUnique score record identifier
student_idINTEGERStudent associated with the score
subject_codeVARCHAR(20)Training subject code
scoreINTEGERSubject score
Tablesstudentssubject_scores
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results