Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Members With More Than Three Claims

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

Your question is Members With More Than Three Claims. 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

Highmark Health analysts need to identify members whose claims activity exceeds three claims within a calendar month. Write a PostgreSQL query that summarizes qualifying member-month combinations.

Requirements

  1. Group claims by member and calendar month using DATE_TRUNC.
  2. Return only member-month groups with more than three claims using HAVING.
  3. Include the member's name and plan type from members.
  4. Sort the results by month and then member ID.

Claims with a missing service date cannot be assigned to a month and should not qualify. Claims whose member ID does not match members should not appear in the final output.

Schema

members
ColumnTypeDescription
member_idPKINTEGERUnique Highmark Health member identifier
member_nameVARCHAR(100)Member display name
plan_typeVARCHAR(40)Member health plan type
claims
ColumnTypeDescription
claim_idPKINTEGERUnique claim identifier
member_idINTEGERMember associated with the claim
service_dateDATEDate medical services were provided
claim_statusVARCHAR(20)Claim processing status
Tablesmembersclaims
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results