Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL: Parents With Siblings

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

Your question is SQL: Parents With Siblings. Start with the requirements and the three 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

Janus Henderson Investors maintains employee family relationships in a student and parent registry. Write a PostgreSQL query to list only parents associated with at least two distinct students, treating those students as siblings.

Requirements

  1. Join parent, student_parent, and student.
  2. Return the parent ID, parent name, and number of distinct associated students.
  3. Include only parents with at least two distinct students.
  4. Sort the results by parent_id ascending.

Schema

parent
ColumnTypeDescription
parent_idPKINTUnique parent identifier
parent_nameVARCHAR(100)Parent's full name
emailVARCHAR(255)Parent email address
student
ColumnTypeDescription
student_idPKINTUnique student identifier
student_nameVARCHAR(100)Student's full name
student_parent
ColumnTypeDescription
student_idPKINTStudent identifier in the relationship
parent_idPKINTParent identifier in the relationship
relationship_typeVARCHAR(30)Relationship classification
Tablesparentstudentstudent_parent
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results