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.
operational_region, second_highest_scoreoperational_region ascending| Column | Type | Description |
|---|---|---|
| survey_idPK | INT | Unique identifier for the satisfaction survey |
| operational_region | VARCHAR(50) | Operational region associated with the survey |
| satisfaction_score | INT | Patient satisfaction score on a 0 to 5 scale |