Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Classify Customer Membership by Total Spend

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

Your question is Classify Customer Membership by Total Spend. 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

Scenario

A retail company wants to analyze customer purchase behavior and assign membership status based on total spending.

Task

Write a SQL query to produce a summary of each customer's total spending, order count, and membership status.

Requirements

  1. Join customers and orders to aggregate spending and order count per customer.
  2. Assign membership status:
    • 'Gold' if total spending is at least 900
    • 'Silver' if total spending is at least 500 but less than 900
    • 'Bronze' otherwise
  3. Include all customers, even those without orders (show 0 and 'Bronze' for them).
  4. Order results by total spending descending.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique identifier for each customer
customer_nameVARCHAR(255)Name of the customer
orders
ColumnTypeDescription
order_idPKINTUnique identifier for each order
customer_idINTReference to the customer who placed the order
amountDECIMAL(10,2)Total amount for the order
Tablescustomersorders
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results