Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Duplicate Patient Records
00:00
5 left

SQL for Duplicate Patient Records

MediumSQL · PostgreSQL

Problem

Write a SQL query to find duplicate patient records across two separate clinical trial databases.

Treat records as duplicates when first name, last name, and date of birth match after trimming whitespace and ignoring letter case. Return each matching record pair, including the source patient IDs and email addresses.

Output

  1. One row per matching patient pair
  2. Columns: trial_a_patient_id, trial_b_patient_id, normalized_first_name, normalized_last_name, date_of_birth, trial_a_email, trial_b_email
  3. Exclude records missing required name or date-of-birth values
  4. Order by normalized last name, normalized first name, date of birth, and patient IDs

Schema

trial_a_patients
ColumnTypeDescription
patient_idPKINTPatient identifier in clinical trial database A
first_nameVARCHAR(100)Patient first name
last_nameVARCHAR(100)Patient last name
date_of_birthDATEPatient date of birth
emailVARCHAR(255)Patient email address
trial_b_patients
ColumnTypeDescription
patient_idPKINTPatient identifier in clinical trial database B
first_nameVARCHAR(100)Patient first name
last_nameVARCHAR(100)Patient last name
date_of_birthDATEPatient date of birth
emailVARCHAR(255)Patient email address
Tablestrial_a_patientstrial_b_patients
Interviewer

Your question is SQL for Duplicate Patient Records. 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.