Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Clinics by Device Offline Rate

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

Your question is Top Clinics by Device Offline Rate. Start with the requirements and the two 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

You are given clinic-level device status events and need to identify the clinics with the worst reliability over the last 30 days. Write a PostgreSQL query that returns the top 10% of clinics by device offline rate, where offline rate is defined as offline events divided by total device status events in the 30-day window.

Schema

clinics
ColumnTypeDescription
clinic_idPKINTPrimary key for the clinic
clinic_nameVARCHAR(255)Human-readable clinic name
device_events
ColumnTypeDescription
event_idPKINTPrimary key for the device event
clinic_idINTClinic associated with the event
device_idINTDevice identifier
event_tsTIMESTAMPTimestamp when the device status event occurred
event_typeVARCHAR(50)Device status event type
Tablesclinicsdevice_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results