Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Revenue and Order Status Counts

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

Your question is Revenue and Order Status Counts. Start with the requirements and the two 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

Tesla Online Store operations needs a daily view of order activity. Order revenue is stored at the line-item level, while order status and date are stored in the orders table.

Write a PostgreSQL query to report one row per order date.

Requirements

  1. Calculate total_completed_revenue by summing quantity * unit_price only for completed orders.
  2. Count pending orders as pending_order_count and cancelled orders as cancelled_order_count.
  3. Include dates containing orders without matching line items, showing zero revenue where appropriate.
  4. Sort the results chronologically by order_date.

Pre-aggregate line items before joining them to orders so an order with multiple items does not inflate status counts.

Schema

orders
ColumnTypeDescription
order_idPKINTUnique order identifier
order_dateDATEDate the order was placed
statusVARCHAR(20)Current order status
sales_channelVARCHAR(30)Tesla sales channel
order_items
ColumnTypeDescription
item_idPKINTUnique line-item identifier
order_idINTReferences orders.order_id
quantityINTNumber of units ordered
unit_priceNUMERIC(10,2)Price for one unit
Tablesordersorder_items
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results