Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Year-over-Year Growth SQL
00:00
5 left

Year-over-Year Growth SQL

MediumSQL · PostgreSQL

Problem

Write a SQL statement to calculate year-over-year growth metrics from raw event logs.

Use the provided event log and event type data. Include only event types and years with a matching prior calendar year.

Output

  1. One row per event type and year.
  2. Columns: event_type_name, event_year, event_count, prior_year_count, yoy_change, and yoy_growth_pct.
  3. Sort by event_type_name, then event_year ascending.

Schema

event_types
ColumnTypeDescription
event_type_idPKINTUnique event type identifier
event_type_nameVARCHAR(100)Readable event type name
event_logs
ColumnTypeDescription
event_idPKINTUnique raw event identifier
event_type_idINTReferenced event type identifier
occurred_atTIMESTAMPTimestamp when the event occurred
Tablesevent_logsevent_types
Interviewer

Your question is Year-over-Year Growth SQL. 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.