Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Compare Month Admissions
00:00
5 left

Compare Month Admissions

MediumSQL · PostgreSQL

Problem

Write a SQL query to compare current month admissions with the previous month.

Use the latest non-null admission_date in the data to determine the current month. Count admission records for both months and calculate the absolute and percentage change.

Output

  1. One row containing current_month, current_admissions, previous_month, previous_admissions, change_count, and change_percent
  2. Include zero counts when a month has no admissions
  3. Return change_percent rounded to two decimal places, or NULL when the previous count is zero
  4. Sort by the current month in descending order

Schema

admissions
ColumnTypeDescription
admission_idPKINTUnique admission record identifier
patient_idVARCHAR(20)Patient identifier associated with the admission
admission_dateDATEDate the admission was recorded
Tablesadmissions
Interviewer

Your question is Compare Month Admissions. Start with the requirements and the one table 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.