Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Weekly Integration Error Clients
00:00
5 left

Weekly Integration Error Clients

MediumSQL · PostgreSQL

Problem

Write a PostgreSQL query to find all clients that had more than three Alabama Staffing integration errors in the past 7 days. Return the client ID, client name, account manager, and total error count. Count only rows where status = 'error', aggregate across all integrations owned by the same client, and sort by error_count descending then client_name ascending.

Schema

ColumnTypeDescription
client_id
client_name
account_manager
is_active
ColumnTypeDescription
integration_id
client_id
integration_name
platform
ColumnTypeDescription
event_id
integration_id
event_time
status
error_code

Representative Rows

clients
1Northstar HealthMaya Pateltrue
5Cedar LogisticsMaya Patelfalse
integrations
1011ATS SyncGreenhouse
1075Timekeeping SyncUKG
integration_events
10011012024-06-14 09:15:00errorAUTH_FAILED
10151072024-06-14 18:20:00errorAUTH_FAILED
Tablesclientsintegrationsintegration_events
Interviewer

Your question is Weekly Integration Error Clients. Start with the requirements and the three 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.