Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL CASE for Customer Segments
00:00
5 left

SQL CASE for Customer Segments

EasySQL · PostgreSQL

Problem

How would you use a CASE statement to create customer segments?

Using the customers table, assign each customer a segment based on annual_spend. Treat missing spending values as Unclassified.

Output

  1. One row per customer with customer_id, customer_name, and customer_segment
  2. Include all customers and order by customer_id ascending

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer full name
annual_spendNUMERIC(10,2)Customer spending during the year
Tablescustomers
Interviewer

Your question is SQL CASE for Customer Segments. Start with the requirements and the one table 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.