Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Second Largest Element in SQL

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

Your question is Second Largest Element in SQL. 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

IQVIA's Clinical Trial Management System needs to identify site enrollment performance across active studies. Write a PostgreSQL query that finds the sites with the second-highest distinct total enrollment within each active study.

Requirements

  1. Include only studies whose status is Active.
  2. Calculate each site's total enrolled patients across all enrollment events, treating missing event totals as zero.
  3. Return every site tied at the second-highest distinct total for its study, ordered by study_id and site_id.

Use a window function such as RANK() so ties at the highest value do not incorrectly exclude the second distinct value.

Schema

studies
ColumnTypeDescription
study_idPKINTEGERStudy identifier
study_codeVARCHAR(30)IQVIA study code
therapeutic_areaVARCHAR(60)Therapeutic area
statusVARCHAR(20)Current study status
sites
ColumnTypeDescription
site_idPKVARCHAR(20)Trial site identifier
study_idINTEGERRelated study identifier
site_nameVARCHAR(100)Trial site name
enrollment_events
ColumnTypeDescription
event_idPKINTEGEREnrollment event identifier
site_idVARCHAR(20)Related trial site
enrolled_patientsINTEGERPatients enrolled during the event
Tablesstudiessitesenrollment_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results