SQL QuestSQL Interview Questions › Joins

Customer Lifetime Value

HardProQuerying BasicsJoinsAggregation & Grouping

Amazon's BI team builds a CLV (Customer Lifetime Value) table within their first week on the job — it's the foundation every downstream revenue model joins against. For each customer, return customer name, membership, total_orders, total_spent, and avg_order_value. Include customers with NO orders (show 0). Order by total_spent descending. CLV questions come up in virtually every Amazon BIE/DA screen because once you have this one table, you can answer 80% of follow-up questions ('top 10 buyers by membership,' 'CLV by signup cohort,' etc.).

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

customers

customer_idnameemailsignup_datemembershiptotal_orders
1John Smithjohn.smith@email.com2023-01-15Gold15
2Emma Wilsonemma.wilson@email.com2023-03-20Silver8
3Michael Brownmichael.brown@email.com2023-02-10Gold12

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: total_orders: 3, total_spent: $150, avg_order_value: $50

Hint

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

Concepts

SELECT JOIN GROUP BY Aggregation ORDER BY Multiple JOINs + Aggregation

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

In these company practice sets

Amazon · Apple · Revolut · Shopify · Snowflake · Stripe

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