Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Flag Invalid Dashboard Revenue Rows
00:00
5 left

Flag Invalid Dashboard Revenue Rows

EasySQL · PostgreSQL

Problem

You are given a single table that feeds an NVIDIA business dashboard. Write a PostgreSQL query that returns one row per metric_date showing how many records failed basic data quality checks. Treat a row as invalid if region is NULL or empty, product_line is NULL or empty, revenue_usd is NULL or negative, or units_sold is NULL or negative. Return the date and the count of invalid rows, ordered by date.

Schema

nvidia_dashboard_metrics
ColumnTypeDescription
record_idPKINTUnique row identifier
metric_dateDATEReporting date used in the dashboard
regionVARCHAR(50)Sales region
product_lineVARCHAR(50)NVIDIA product line
revenue_usdDECIMAL(12,2)Reported revenue in USD
units_soldINTNumber of units sold
Tablesnvidia_dashboard_metrics
Interviewer

Your question is Flag Invalid Dashboard Revenue Rows. Start with the requirements and the one table 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.