Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL High-Level Topic Quiz
00:00
5 left

SQL High-Level Topic Quiz

MediumSQL · PostgreSQL

Problem

Tell me about high-level SQL topics you’ve worked with, including how you approach writing and validating queries.

For the practical portion, write a query that identifies qualifying sites for active studies and demonstrates how you would validate the result. Include only sites with at least two completed enrollment events.

Output

  1. One row per qualifying site, with study_name, site_name, total_participants, latest_event_date, and study_site_rank.
  2. Include only active studies and qualifying sites, ordered by study_name, then study_site_rank, then site_id.

Schema

studies
ColumnTypeDescription
study_idPKINTUnique study identifier
study_nameVARCHAR(100)Study display name
statusVARCHAR(20)Study lifecycle status
sites
ColumnTypeDescription
site_idPKINTUnique site identifier
study_idINTStudy associated with the site
site_nameVARCHAR(100)Site display name
enrollment_events
ColumnTypeDescription
event_idPKINTUnique enrollment event identifier
site_idINTSite associated with the event
event_dateDATEDate of the enrollment event
participant_countINTParticipants represented by the event
event_statusVARCHAR(20)Enrollment event status
Tablesstudiessitesenrollment_events
Interviewer

Your question is SQL High-Level Topic Quiz. Start with the requirements and the three 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.