SQL QuestSQL Interview Questions › Aggregation & Grouping

Order Status Dashboard

HardProQuerying BasicsAggregation & GroupingSubqueries & CTEs

Build a complete order status dashboard. For each status, show: order_count, total_revenue (2 dec), avg_order_value (2 dec), and pct_of_total_orders (this status as % of all orders, 1 dec). Sort by order_count descending.

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: 3 rows — one per status with revenue and share metrics

Hint

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

Concepts

SELECT GROUP BY Aggregation Subquery ORDER BY

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

In these company practice sets

Amazon · Shopify · Snowflake · Stripe · Walmart

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

Related questions

Cumulative Distinct Customers Over TimeHard · FreeRunning Total RevenueHard · FreeYear-over-Year GrowthHard · Free7-Day Rolling Revenue AverageHard · FreeMulti-CTE Revenue PipelineHard · FreeOrder Sessionization by CustomerHard · 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