Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Identify Top Partner Error Modes
00:00
5 left

Identify Top Partner Error Modes

MediumSQL · PostgreSQL

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
Interviewer

Your question is Identify Top Partner Error Modes. 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.