Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Volume Drop
00:00
5 left

SQL for Volume Drop

MediumSQL · PostgreSQL

Problem

Write a SQL query to identify users whose transaction volume dropped by more than 30% week over week.

Assume transaction volume is the sum of amount per user per calendar week. Compare each week with the immediately preceding week, exclude users whose preceding-week volume is zero or unavailable, and treat missing current-week activity as zero.

Output

  1. One row per qualifying user and week, with user_id, user_name, week_start, current_volume, prior_week_volume, and drop_pct.
  2. Include only drops greater than 30%, ordered by week_start ascending and user_id ascending.

Schema

users
ColumnTypeDescription
user_idPKINTUnique Wise user identifier
user_codeVARCHAR(20)External user reference code
user_nameVARCHAR(100)User display name
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
user_idINTUser associated with the transaction
occurred_atTIMESTAMPTransaction timestamp
amountNUMERIC(12,2)Transaction amount used for volume calculations
Tablesuserstransactions
Interviewer

Your question is SQL for Volume Drop. 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.