Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL for Weekly Site Performance

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

Your question is SQL for Weekly Site Performance. Start with the requirements and the three 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

Business Context

Diligent Robotics operations leaders need a weekly view of how sites using Moxi are performing. The report should show completed task volume and turnaround trends while preserving sites and robots that may have no completed work.

Task

Write a PostgreSQL query that analyzes completed tasks by site and Monday-based calendar week. Use started_at to determine the week and calculate turnaround from started_at to completed_at.

Requirements

  1. Include only tasks with status = 'completed' and non-null timestamps.
  2. Return site name, week start, completed task count, and average turnaround in minutes rounded to two decimals.
  3. Use LAG to calculate week-over-week percentage change for both completed task count and average turnaround, comparing each site with its previous reported week.
  4. Return sites in chronological order, with each site's weeks ordered ascending. Return null percentage changes when no prior week exists or the prior value is zero.

Schema

sites
ColumnTypeDescription
site_idPKINTUnique site identifier
site_nameVARCHAR(100)Hospital or facility name
cityVARCHAR(80)Site city
activeBOOLEANWhether the site is currently active
robots
ColumnTypeDescription
robot_idPKINTUnique Moxi robot identifier
site_idINTAssigned site identifier
robot_nameVARCHAR(80)Robot display name
commissioned_atDATEDate the robot entered service
tasks
ColumnTypeDescription
task_idPKINTUnique task identifier
site_idINTSite where the task occurred
robot_idINTAssigned Moxi robot
statusVARCHAR(30)Task lifecycle status
started_atTIMESTAMPTZTask start timestamp
completed_atTIMESTAMPTZTask completion timestamp
Tablessitesrobotstasks
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results