Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Joins and Subqueries
00:00
5 left

SQL Joins and Subqueries

MediumSQL · PostgreSQL

Problem

Write a simple SQL query involving JOINs and subqueries.

Use the provided customer, policy, and claim tables. Return customers whose total approved claim amount is greater than the average approved claim amount across all approved claims.

Output

  1. One row per qualifying customer
  2. Columns: customer_id, customer_name, total_approved_claims
  3. Sort by total_approved_claims descending, then customer_id ascending

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer name
policies
ColumnTypeDescription
policy_idPKINTUnique policy identifier
customer_idINTCustomer who owns the policy
policy_numberVARCHAR(30)Business policy number
policy_statusVARCHAR(20)Current policy status
claims
ColumnTypeDescription
claim_idPKINTUnique claim identifier
policy_idINTPolicy associated with the claim
claim_statusVARCHAR(20)Current claim status
claim_amountDECIMAL(12,2)Claim amount
Tablescustomerspoliciesclaims
Interviewer

Your question is SQL Joins and Subqueries. 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.