Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Month-over-Month Active Listings
00:00
5 left

Month-over-Month Active Listings

MediumSQL · PostgreSQL

Problem

Write a query to calculate the month-over-month growth rate of active listings on the PriceLabs platform.

Use the provided listing and status history data. Treat a listing as active for a month when its latest status event through that month's end is active.

Output

  1. One row per calendar month from the first through last recorded status event.
  2. Columns: month_start, active_listings, and growth_rate_pct.
  3. Set growth for the first month to NULL. Calculate later growth as the percentage change from the prior month.
  4. Order by month_start ascending.

Schema

listings
ColumnTypeDescription
listing_idPKINTUnique PriceLabs listing identifier
listing_nameVARCHAR(100)Listing display name
regionVARCHAR(80)Listing market or region
listing_status_history
ColumnTypeDescription
status_event_idPKINTUnique status event identifier
listing_idINTReferenced listing identifier
statusVARCHAR(20)Status recorded by the event
effective_atTIMESTAMPTimestamp when the status became effective
Tableslistingslisting_status_history
Interviewer

Your question is Month-over-Month Active Listings. 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.