Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Usage Drop Analysis
00:00
5 left

SQL Usage Drop Analysis

MediumSQL · PostgreSQL

Problem

Write a SQL query to identify customers whose usage has dropped by more than twenty percent month-over-month.

Use the customers and usage_events tables. Compare each customer's total usage for a calendar month with the immediately preceding calendar month. Exclude customers without usage in both months and cases where the prior month's usage is zero or unavailable.

Output

  1. One row per customer and current usage month meeting the decline condition.
  2. Columns: customer_id, customer_name, current_month, prior_month_usage, current_month_usage, and drop_percentage.
  3. Include only declines greater than 20%, ordered by customer_id and current_month ascending.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(150)Customer display name
usage_events
ColumnTypeDescription
usage_event_idPKINTUnique usage event identifier
customer_idINTCustomer associated with the usage event
usage_dateDATEDate on which usage was recorded
usage_unitsINTEGERUnits consumed during the event
Tablescustomersusage_events
Interviewer

Your question is SQL Usage Drop Analysis. 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.