Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Year-Over-Year Carrier Growth
00:00
5 left

Year-Over-Year Carrier Growth

MediumSQL · PostgreSQL

Problem

Convoy's Carrier Dashboard tracks how quickly new carriers join the platform. Write a PostgreSQL query that calculates annual carrier sign-ups and their year-over-year growth rate.

Requirements

  1. Count distinct eligible carriers by the calendar year of their first signup event.
  2. Include only carriers whose account status is active or pending.
  3. Return the signup year, current signup count, prior-year signup count, and growth rate as a percentage rounded to two decimal places. Return NULL for the first year or when the prior-year count is zero.
  4. Order the results chronologically.

Schema

carrier_accounts
ColumnTypeDescription
carrier_idPKINTUnique carrier identifier
account_statusVARCHAR(20)Current carrier account status
created_atDATEDate the carrier account was created
carrier_signups
ColumnTypeDescription
signup_idPKINTUnique signup event identifier
carrier_idINTCarrier associated with the signup
signed_up_atTIMESTAMPTimestamp of the signup event
acquisition_channelVARCHAR(30)Signup acquisition source
Tablescarrier_accountscarrier_signups
Interviewer

Your question is Year-Over-Year Carrier Growth. 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.