Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Identify Top Partner Error Modes

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

Your question is Identify Top Partner Error Modes. Start with the requirements and the two 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

You are given partner error logs and a lookup of error codes. Write a PostgreSQL query that identifies the top failure modes by partner, showing each partner’s error category, the number of occurrences, and the share of that partner’s total errors. Focus on the most frequent failure modes and exclude partners with no logged errors.

Schema

partner_errors
ColumnTypeDescription
error_idPKINTPrimary key for each error event
partner_idINTPartner identifier
error_codeVARCHAR(50)Error code reported by the partner
occurred_atTIMESTAMPWhen the error occurred
error_code_lookup
ColumnTypeDescription
error_codePKVARCHAR(50)Error code key
error_categoryVARCHAR(100)Normalized failure mode name
severityVARCHAR(20)Severity label for the code
Tablespartner_errorserror_code_lookup
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results