Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Build KPIs With SQL and Python
00:00
5 left

Build KPIs With SQL and Python

MediumSQL · PostgreSQL

Problem

How would you use Python string manipulation and basic data structures, along with SQL, to build KPIs from a sample dataset?

Use the provided sample dataset to produce a KPI summary by customer plan. Treat status values case-insensitively after trimming whitespace, and count revenue only for completed orders.

Output

  1. One row per customer plan with plan, customer_count, total_orders, completed_orders, completion_rate_pct, completed_revenue, and avg_completed_order_value.
  2. Include plans with no orders, use zero for unavailable KPI values, and order by completed_revenue descending, then plan ascending.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer display name
planVARCHAR(30)Customer plan
signup_dateDATEDate the customer signed up
orders
ColumnTypeDescription
order_idPKINTUnique order identifier
customer_idINTCustomer associated with the order
order_dateDATEDate the order was created
statusVARCHAR(30)Order status, potentially inconsistently formatted
amountNUMERIC(10,2)Order amount
Tablescustomersorders
Interviewer

Your question is Build KPIs With SQL and Python. Start with the requirements and the two tables 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.