Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Query Writing
00:00
5 left

SQL Query Writing

MediumSQL · PostgreSQL

Problem

Build a set of SQL queries to answer specific data questions.

Using the provided customers, policies, and claims tables, return a consolidated customer-level result. Include customers without policies or qualifying claims, and treat missing monetary values as zero.

Output

  1. One row per customer, with customer_id, customer_name, active_policy_count, open_claim_count, and open_claim_amount.
  2. Include only claims with status open or under_review.
  3. Order by active policy count descending, open claim amount descending, then customer ID ascending.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer display name
policies
ColumnTypeDescription
policy_idPKINTUnique policy identifier
customer_idINTAssociated customer identifier
policy_statusVARCHAR(30)Current policy status
annual_premiumDECIMAL(12,2)Annual policy premium
claims
ColumnTypeDescription
claim_idPKINTUnique claim identifier
customer_idINTCustomer associated with the claim
claim_statusVARCHAR(30)Current claim status
claim_amountDECIMAL(12,2)Reported claim amount
Tablescustomerspoliciesclaims
Interviewer

Your question is SQL Query Writing. 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.