Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Creator Ticket Trend SQL
00:00
5 left

Creator Ticket Trend SQL

MediumSQL · PostgreSQL

Problem

Write a SQL query to analyze creator support ticket volume by region and week, and identify the top three regions with the largest week-over-week increase.

Use the provided creator region and support ticket tables. Compare each region with its immediately preceding calendar week.

Output

  1. One row per region-week comparison, including only weeks with a prior calendar week.
  2. Columns: region, week_start, current_ticket_volume, prior_ticket_volume, and week_over_week_increase.
  3. Return the three largest increases, ordered by increase descending, then region ascending, then week ascending.

Schema

youtube_creator_support_tickets
ColumnTypeDescription
ticket_idPKINTUnique support ticket identifier
creator_idINTCreator associated with the ticket
created_atDATEDate the support ticket was created
creator_regions
ColumnTypeDescription
creator_idPKINTUnique creator identifier
regionVARCHAR(100)Creator geographic region
Tablesyoutube_creator_support_ticketscreator_regions
Interviewer

Your question is Creator Ticket Trend 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.