Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL: Week-over-Week Call Growth

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

Your question is SQL: Week-over-Week Call Growth. 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

Doximity’s analytics team wants to monitor weekly call volume for Doximity Dialer. Write a PostgreSQL query that calculates completed telemedicine call volume and its week-over-week growth rate.

Requirements

  1. Count only calls with status = 'completed' and a non-null started_at.
  2. Include every week in calendar_weeks, including weeks with zero completed calls.
  3. Compare each week with the immediately preceding week. Return NULL for the first week and whenever the prior week has zero calls.
  4. Return results in chronological order, with growth expressed as a percentage rounded to two decimal places.

Schema

telemedicine_calls
ColumnTypeDescription
call_idPKINTEGERUnique telemedicine call identifier
started_atTIMESTAMPTimestamp when the call started
statusVARCHAR(20)Call outcome, such as completed or missed
calendar_weeks
ColumnTypeDescription
week_startPKDATEMonday that begins the reporting week
Tablestelemedicine_callscalendar_weeks
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results