Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Strictly Increasing Prices Query

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

Your question is Strictly Increasing Prices Query. 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

Nielsen pricing analysts want to identify products with consistently rising observed prices in the Nielsen product catalog. Write a PostgreSQL query that returns product names whose non-null monthly prices strictly increase over time.

Requirements

  1. Join the product catalog to its monthly pricing records.
  2. Use a window function to compare each price with the previous observed month for the same product.
  3. Return products with at least three non-null monthly prices, where every subsequent price is strictly greater than the previous one.
  4. Sort the resulting product names alphabetically. Missing calendar months do not invalidate a product; compare the available non-null observations in chronological order.

Schema

nielsen_products
ColumnTypeDescription
product_idPKINTUnique Nielsen product identifier
product_nameVARCHAR(150)Nielsen product name
categoryVARCHAR(80)Product category
nielsen_monthly_prices
ColumnTypeDescription
price_idPKINTUnique pricing record identifier
product_idINTReferenced Nielsen product identifier
month_startDATEFirst day of the pricing month
priceNUMERIC(10,2)Observed product price
Tablesnielsen_productsnielsen_monthly_prices
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results