Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Credit Score Applicants by State

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

Your question is Top Credit Score Applicants by State. Start with the requirements and the three 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

How would you identify the top 5% of loan applicants based on their credit score within each state at American Credit Acceptance?

Write a SQL query using the provided applicant, application, and state reference data. Exclude applicants without a credit score and include applicants whose score meets or exceeds their state's 95th percentile cutoff.

Output

  1. One row per qualifying applicant, with applicant_id, applicant_name, state_code, state_name, credit_score, state_percentile_cutoff, and state_rank.
  2. Sort by state_code, descending credit_score, then applicant_id.

Schema

loan_applications
ColumnTypeDescription
application_idPKINTUnique loan application identifier
applicant_idINTApplicant associated with the application
state_codeVARCHAR(10)State code associated with the application
credit_scoreNUMERIC(4,0)Applicant credit score
applicant_profiles
ColumnTypeDescription
applicant_idPKINTUnique applicant identifier
applicant_nameVARCHAR(100)Applicant display name
state_reference
ColumnTypeDescription
state_codePKVARCHAR(10)State abbreviation or reference code
state_nameVARCHAR(50)Full state name
regionVARCHAR(30)Broad geographic region
Tablesloan_applicationsapplicant_profilesstate_reference
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results