Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Policy Changes in 30 Days
00:00
5 left

SQL Policy Changes in 30 Days

MediumSQL · PostgreSQL

Problem

Write a SQL query to identify the number of policyholders who made a policy change, such as a coverage upgrade or downgrade, within 30 days of their initial purchase at Next insurance. Use the policy purchase and policy change records provided. Count each policyholder once, even if they changed multiple policies or made multiple changes.

Output

  1. Return one row with one column, policyholder_count.
  2. Include changes occurring from the purchase date through exactly 30 days afterward.
  3. Return only the count of distinct policyholders.

Schema

policies
ColumnTypeDescription
policy_idPKVARCHAR(20)Unique identifier for the insurance policy
policyholder_idVARCHAR(20)Identifier for the policyholder
initial_purchase_dateDATEDate the policy was initially purchased
policy_changes
ColumnTypeDescription
change_idPKVARCHAR(20)Unique identifier for the policy change
policy_idVARCHAR(20)Policy affected by the change
change_dateDATEDate the policy change occurred
change_typeVARCHAR(40)Category of policy change
Tablespoliciespolicy_changes
Interviewer

Your question is SQL Policy Changes in 30 Days. 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.