Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Policies and Premium SQL

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

Your question is Policies and Premium SQL. 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

GEICO's Business Analytics team needs a customer-level view of policy concentration and annual premium. Write a PostgreSQL query that identifies customers who hold multiple policies.

Requirements

  1. Join customers to their policies using customer_id.
  2. Return each qualifying customer's ID, name, policy count, and total annual premium.
  3. Include only customers with more than one policy, and sort by total annual premium descending, then customer ID ascending.

Schema

geico_customers
ColumnTypeDescription
customer_idPKINTEGERUnique GEICO customer identifier
customer_nameVARCHAR(100)Customer's full name
geico_policies
ColumnTypeDescription
policy_idPKINTEGERUnique policy identifier
customer_idINTEGERReferences geico_customers.customer_id
policy_numberVARCHAR(30)GEICO policy number
policy_typeVARCHAR(30)Coverage category
annual_premiumNUMERIC(12,2)Annual premium amount in dollars
Tablesgeico_customersgeico_policies
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results