Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Second-Highest Satisfaction by Region
00:00
5 left

Second-Highest Satisfaction by Region

MediumSQL · PostgreSQL

Problem

Write a query to find the second-highest patient satisfaction score within each operational region.

Treat scores as distinct values, so tied scores should produce one result per region. Ignore NULL scores and exclude regions without at least two distinct non-NULL scores.

Output

  1. One row per qualifying operational region
  2. Columns: operational_region, second_highest_score
  3. Sort by operational_region ascending

Schema

patient_satisfaction_surveys
ColumnTypeDescription
survey_idPKINTUnique identifier for the satisfaction survey
operational_regionVARCHAR(50)Operational region associated with the survey
satisfaction_scoreINTPatient satisfaction score on a 0 to 5 scale
Tablespatient_satisfaction_surveys
Interviewer

Your question is Second-Highest Satisfaction by Region. Start with the requirements and the one table 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.