Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
CTE Churn Identification
00:00
5 left

CTE Churn Identification

MediumSQL · PostgreSQL

Problem

Given a table of user transactions, write a query using Common Table Expressions (CTEs) to identify churned users, defined as users who transacted last month but not this month.

Use the month containing the latest transaction date as this month, and the immediately preceding calendar month as last month. Exclude transactions with a NULL user_id.

Output

  1. Return one row per churned user with the column user_id.
  2. Include users active last month and inactive this month.
  3. Sort by user_id in ascending order.

Schema

user_transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
user_idINTIdentifier of the user who made the transaction
transaction_dateDATEDate on which the transaction occurred
amountNUMERIC(12,2)Transaction amount
Tablesuser_transactions
Interviewer

Your question is CTE Churn Identification. 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.