Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Proficiency and Application
00:00
5 left

SQL Proficiency and Application

MediumSQL · PostgreSQL

Problem

How would you assess your current SQL skill level and why?

For this practical assessment, demonstrate your answer with a PostgreSQL query using the supplied policyholder and claim data. The result should show how you handle missing relationships, conditional claim inclusion, aggregation, and comparative ordering.

Output

  1. One row per policyholder, including policyholders without qualifying claims.
  2. Columns: policyholder_name, risk_segment, claim_count, total_claim_amount, and segment_rank.
  3. Include only claims dated in 2025 with status Open or Closed.
  4. Order by risk_segment, segment_rank, then policyholder_name.

Schema

policyholders
ColumnTypeDescription
policyholder_idPKINTUnique policyholder identifier
policyholder_nameVARCHAR(100)Policyholder display name
risk_segmentVARCHAR(30)Risk classification for the policyholder
claims
ColumnTypeDescription
claim_idPKINTUnique claim identifier
policyholder_idINTPolicyholder associated with the claim
claim_dateDATEDate the claim was recorded
statusVARCHAR(20)Current claim status
claim_amountNUMERIC(12,2)Claim amount
Tablespolicyholdersclaims
Interviewer

Your question is SQL Proficiency and Application. 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.