Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Window Function for Latest Reading
00:00
5 left

SQL Window Function for Latest Reading

MediumSQL · PostgreSQL

Problem

Write a SQL query using window functions to identify the most recent clinical reading for each dialysis patient at Fresenius Medical Care North America.

Use the provided patient and clinical reading data. Return only dialysis patients with at least one reading, selecting the latest timestamp and using the reading ID to break timestamp ties.

Output

  1. One row per dialysis patient with a matching reading.
  2. Columns: patient_id, patient_name, reading_id, reading_type, reading_value, unit, and reading_timestamp.
  3. Order by patient_id ascending.

Schema

patients
ColumnTypeDescription
patient_idPKINTUnique dialysis patient identifier
patient_nameVARCHAR(100)Patient name
is_dialysis_patientBOOLEANWhether the patient is currently identified as a dialysis patient
clinical_readings
ColumnTypeDescription
reading_idPKINTUnique clinical reading identifier
patient_idINTPatient associated with the reading
reading_typeVARCHAR(50)Type of clinical measurement
reading_valueDECIMAL(8,2)Recorded clinical measurement value
unitVARCHAR(20)Unit of measurement
reading_timestampTIMESTAMPTimestamp when the reading was recorded
Tablespatientsclinical_readings
Interviewer

Your question is SQL Window Function for Latest Reading. Start with the requirements and the two 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.