Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL: Partner Order Volume Decline

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

Your question is SQL: Partner Order Volume Decline. 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

Asana's Operations team wants to identify channel partners whose order activity is weakening. Write a PostgreSQL query that compares each partner's average monthly completed-order volume in the latest represented quarter with the preceding quarter.

Requirements

  1. Use the latest completed order date in the data to determine the most recent represented quarter and the preceding quarter.
  2. Count completed orders by partner and calendar month, including months with zero orders.
  3. Return partners whose average monthly order volume declined by more than 20% between the two quarters.
  4. Exclude partners whose earlier-quarter average is zero, and order results by percentage decline descending.

Schema

channel_partners
ColumnTypeDescription
partner_idPKINTUnique channel partner identifier
partner_nameVARCHAR(100)Channel partner name
regionVARCHAR(50)Partner operating region
orders
ColumnTypeDescription
order_idPKINTUnique order identifier
partner_idINTReferences channel_partners.partner_id
order_dateDATEDate the order was placed
statusVARCHAR(20)Order lifecycle status
Tableschannel_partnersorders
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results