Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Monthly SLA Attainment
00:00
5 left

SQL for Monthly SLA Attainment

MediumSQL · PostgreSQL

Problem

Write a SQL query to join operational performance data with client records and calculate monthly SLA attainment by team at Aon.

Treat NULL SLA statuses as not evaluated, excluding them from the attainment calculation. Include only performance records with a matching client record.

Output

  1. One row per calendar month and team.
  2. Columns: month, team, clients_served, evaluated_requests, sla_met_count, and sla_attainment_pct.
  3. Include teams with at least one evaluated request. Sort by month ascending, then team ascending.

Schema

client_records
ColumnTypeDescription
client_idPKINTUnique client identifier
client_nameVARCHAR(150)Client organization name
client_segmentVARCHAR(50)Client service segment
operational_performance
ColumnTypeDescription
performance_idPKINTUnique operational performance record
client_idINTClient associated with the performance record
teamVARCHAR(100)Operational team responsible for the request
performance_dateDATEDate on which performance was measured
sla_metBOOLEANWhether the request met its SLA
Tablesoperational_performanceclient_records
Interviewer

Your question is SQL for Monthly SLA Attainment. 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.