SQL QuestSQL Interview Questions › Joins

Anti-Join Pipeline: Unmatched Records

HardProQuerying BasicsJoinsNULL HandlingSubqueries & CTEsAggregation & Grouping

Find products that were ordered but never completed (no completed orders exist for that product). Using a LEFT JOIN anti-pattern, show product, category, total_orders (count of all orders for that product), and total_revenue (sum of total for all orders). Also show what percentage of all products these represent as pct_of_products (1 decimal). Sort by total_orders descending. Anti-join patterns (LEFT JOIN WHERE NULL, NOT EXISTS, EXCEPT) are tested at Amazon and Google because they test understanding of join mechanics.

Solve it in the browser editor →

Runs on SQLite in your browser, graded against the expected result, no signup. A wrong answer gets a diagnosis, not just "incorrect".

Schema

orders

order_idcustomer_idproductcategoryquantitypricetotalorder_datecountrystatus
11Laptop ProElectronics11299.991299.992024-01-15USAcompleted
22Wireless MouseElectronics249.9999.982024-01-16Canadacompleted
33Office ChairFurniture1349.99349.992024-01-17USAcompleted

Expected output: ProductX appears with total_orders=5

Hint

This is a Pro challenge — the hint, the step-by-step tutor and the reference solution open in the app.

Concepts

SELECT LEFT JOIN IS NULL CTE GROUP BY DISTINCT Anti-Join + CTE

Practise the topic: SQL practice questions · JOIN practice · NULL handling practice · CTE practice · GROUP BY exercises · Advanced SQL interview questions

In these company practice sets

Amazon · Databricks · Google · JPMorgan · Plaid · Snowflake · Stripe · LinkedIn

A SQL Quest challenge matched to patterns reported for these companies — not a question any of them has published.

Related questions

Multi-CTE Revenue PipelineHard · FreeEmployees Earning More Than ManagerHard · ProEmployees with Similar SalariesHard · ProMoving Average with Dynamic WindowHard · ProDetect Repeat Buyers Within 7 DaysHard · ProRecursive Team Size RollupHard · Pro

Where would this cost you points in an interview?

Ten questions, no signup: a Skillmap across nine SQL skills and the one to fix first.

Take the readiness test