Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Walk Through Dataset Analysis
00:00
5 left

Walk Through Dataset Analysis

MediumSQL · PostgreSQL

Problem

Walk me through your analysis of this dataset.

Use the provided policyholder, claim, and payment data. Produce a regional claims summary that includes payment totals, closure timing, and records requiring data-quality review.

Output

  1. One row per region, including Unknown for claims without a usable region.
  2. Return region, claim_count, total_incurred, total_paid, average_days_to_close, and review_claim_count.
  3. Include all claims, sort by claim_count descending, then region ascending.

Schema

policyholders
ColumnTypeDescription
policyholder_idPKINTUnique policyholder identifier
policyholder_nameVARCHAR(100)Policyholder name
regionVARCHAR(50)Policyholder region
claims
ColumnTypeDescription
claim_idPKINTUnique claim identifier
policyholder_idINTRelated policyholder identifier
opened_dateDATEDate the claim was opened
closed_dateDATEDate the claim was closed
incurred_amountDECIMAL(12,2)Expected total claim cost
claim_statusVARCHAR(20)Current claim status
claim_payments
ColumnTypeDescription
payment_idPKINTUnique payment identifier
claim_idINTRelated claim identifier
payment_dateDATEDate of payment
payment_amountDECIMAL(12,2)Payment amount
payment_methodVARCHAR(20)Payment method
Tablespolicyholdersclaimsclaim_payments
Interviewer

Your question is Walk Through Dataset Analysis. Start with the requirements and the three 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.