Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Diagnose Missing Credit Metrics in Reports

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

Your question is Diagnose Missing Credit Metrics in Reports. Start with the requirements and the three 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 a client report built from Moody's credit data that is returning NULL for specific credit metrics. Write a PostgreSQL query that identifies which report rows are missing metric values, shows the related entity and metric name, and flags whether the null came from the source metric table or from a failed match to the metric reference table.

Schema

client_reports
ColumnTypeDescription
report_idPKINTPrimary key for the report row
entity_idINTEntity being reported on
metric_codeVARCHAR(20)Metric requested in the report
report_dateDATEReport date
metric_valueNUMERIC(12,4)Final metric value shown in the report
credit_metrics
ColumnTypeDescription
entity_idINTEntity identifier
metric_codeVARCHAR(20)Metric code in the source system
metric_valueNUMERIC(12,4)Source metric value
as_of_dateDATEDate the metric was captured
metric_reference
ColumnTypeDescription
metric_codePKVARCHAR(20)Metric code key
metric_nameVARCHAR(100)Human-readable metric name
is_activeBOOLEANWhether the metric is currently valid
Tablesclient_reportscredit_metricsmetric_reference
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results