Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Patient Gender Percentage Query

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

Your question is Patient Gender Percentage Query. 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

Exusia Clinical Data Hub needs a basic demographic quality metric for its registered patient population. Write a PostgreSQL query that calculates the percentage of all registered patients whose recorded gender is M.

Requirements

  1. Include every patient in the denominator, including patients without a demographics row or with a NULL gender.
  2. Count each patient at most once, even if the demographics table contains duplicate records.
  3. Return one row with the percentage in percent form, rounded to the nearest hundredth, such as 40.00 for 40 percent.
  4. Avoid division-by-zero errors if the patient table is empty.

Schema

patients
ColumnTypeDescription
patient_idPKINTEGERUnique registered patient identifier
patient_nameVARCHAR(100)Patient display name
patient_demographics
ColumnTypeDescription
demographic_idPKINTEGERUnique demographics record identifier
patient_idINTEGERReferenced patient identifier
genderVARCHAR(20)Recorded gender value
Tablespatientspatient_demographics
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results