Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Flag Invalid Dashboard Revenue Rows

EasySQL · PostgreSQL00:00
I
Practice interviewer
In session
5 left
00:00

Your question is Flag Invalid Dashboard Revenue Rows. Start with the requirements and the one table 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 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
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results