Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Weekly Contact Center SQL
00:00
5 left

Weekly Contact Center SQL

MediumSQL · PostgreSQL

Problem

Write a SQL query to calculate weekly contact center performance by queue, including total calls, average handle time, and first contact resolution rate.

Use the calls and queues tables. Treat missing resolution values as not resolved, and label calls without a matching queue as Unknown.

Output

  1. One row per week and queue, with week_start, queue_name, total_calls, average_handle_time_seconds, and first_contact_resolution_rate.
  2. Include all calls, sort by week_start ascending and queue_name ascending.

Schema

queues
ColumnTypeDescription
queue_idPKINTUnique queue identifier
queue_nameVARCHAR(100)Contact center queue name
service_lineVARCHAR(100)Operational service line for the queue
calls
ColumnTypeDescription
call_idPKINTUnique call identifier
queue_idINTQueue handling the call
call_started_atTIMESTAMPCall start timestamp
handle_time_secondsINTTotal handle time in seconds
first_contact_resolvedBOOLEANWhether the issue was resolved during the first contact
Tablescallsqueues
Interviewer

Your question is Weekly Contact Center SQL. 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.