Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Joins and Year-Over-Year Growth

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

Your question is SQL Joins and Year-Over-Year Growth. 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

Unity Technologies BI analysts need to monitor annual revenue across Unity products such as Unity Ads, Unity Cloud, and the Unity Asset Store. Write a PostgreSQL query that joins product metadata with revenue records and calculates year-over-year performance.

Requirements

  1. Include revenue from 2023 through 2025 and aggregate it by product and calendar year.
  2. Use a window function to show the previous available year's revenue for each product.
  3. Calculate percentage growth only when the immediately preceding calendar year exists and its revenue is nonzero. Return NULL otherwise.
  4. Return results ordered by product name and revenue year.

Schema

unity_products
ColumnTypeDescription
product_idPKINTUnique Unity product identifier
product_nameVARCHAR(100)Unity product name
product_lineVARCHAR(50)Product category
product_revenue
ColumnTypeDescription
revenue_idPKINTUnique revenue record identifier
product_idINTReferenced Unity product
revenue_dateDATEDate revenue was recognized
net_revenueDECIMAL(12,2)Net revenue in USD
Tablesunity_productsproduct_revenue
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results