Netflix
Interview Core Track · Easy · 15 min
Netflix Country Marketing Spend
SELECT c.country_name, SUM(ms.amount_spent) as total_marketing_budget FROM fact_marketing_spend AS ms JOIN dimension_country AS c ON ms.country_id=c.country_...
Company labels are directional practice context, not official interview guidance.
Objective
Practice joins through a Netflix-tagged business scenario.
Approach
Use this track to improve speed, edge-case handling, and accuracy under timed conditions.
Company context
Company labels are directional practice context, not official interview guidance.
SELECT c.country_name, SUM(ms.amount_spent) as total_marketing_budget FROM fact_marketing_spend AS ms JOIN dimension_country AS c ON ms.country_id=c.country_id WHERE ms.campaign_date BETWEEN '2024-01-01' and '2024-03-31' GROUP BY c.country_name
dimension_country
fact_marketing_spend
SQL workspace
Run queries against the protected question data, then submit once the result shape looks right.
Sign in to run SQL
Create a free account or sign in before running queries against protected question data.