Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Operational KPIs
00:00
5 left

SQL for Operational KPIs

MediumSQL · PostgreSQL

Problem

Write a SQL query to calculate daily operational KPIs by team, including volume, average handle time, and SLA attainment, from a table of work items and a table of team assignments. Use created_at as the operational date. Average handle time applies to completed items with timestamps, and SLA attainment is the percentage of completed items finished by sla_due_at.

Output

  1. One row per operational date and team, with kpi_date, team_name, volume, avg_handle_time_minutes, and sla_attainment_pct.
  2. Exclude work items without a team assignment and assignments without a matching work item.
  3. Order by kpi_date, then team_name.

Schema

work_items
ColumnTypeDescription
work_item_idPKINTUnique identifier for the work item
created_atTIMESTAMPTimestamp when the work item was created
started_atTIMESTAMPTimestamp when work began
completed_atTIMESTAMPTimestamp when work was completed
sla_due_atTIMESTAMPSLA deadline for completing the work item
team_assignments
ColumnTypeDescription
assignment_idPKINTUnique identifier for the assignment
work_item_idINTIdentifier of the assigned work item
team_nameVARCHAR(100)Operational team responsible for the work item
Tableswork_itemsteam_assignments
Interviewer

Your question is SQL for Operational KPIs. 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.