Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL for Weekly Performance

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

Your question is SQL for Weekly Performance. 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

Clear Operations needs a weekly view of performance across Clear locations. Write a PostgreSQL query that reports completed transaction volume, average customer wait time, and the week-over-week change in completed transactions for each location.

Requirements

  1. Include only transactions whose status is completed.
  2. Group results by location and calendar week, using Monday as the week start.
  3. Calculate completed transaction count and average wait time in minutes.
  4. Use a window function to calculate the percentage change in completed transactions from the previous week for the same location. Return NULL when no prior week exists.
  5. Include only location-week groups with completed transactions and order the output by location name and week.

Schema

locations
ColumnTypeDescription
location_idPKINTPrimary key for the Clear location
location_nameVARCHAR(100)Name of the Clear location
transactions
ColumnTypeDescription
transaction_idPKINTPrimary key for the transaction
location_idINTLocation associated with the transaction
statusVARCHAR(20)Transaction processing status
completed_atTIMESTAMPTZTimestamp when the transaction completed
wait_minutesINTCustomer wait time in minutes
Tableslocationstransactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results