SELECT s.customer_id,
p.plan_name,
s.start_date,
DATEDIFF(day, LAG(start_date) OVER (PARTITION BY customer_id ORDER BY start_date),start_date ) AS days_diff,
DATEDIFF(month,LAG(start_date) OVER (PARTITION BY customer_id ORDER BY start_date),start_date) as months_diff
FROM subscriptions_demo AS s
JOIN plans AS p
ON s.plan_id = p.plan_id
8weeksqlchallenge - Week3
Case Study #3 - Foodie-Fi
Introduction
Foodie-Fi is a subscription-based streaming service for foody content. With this case study, we have chance to understand the metrics relating subscription business industry.
Case Study Insights
The one most important thing of subscription business is understand of customer’s behavior by answering questions relating to the fluctuations in customer decisions. This scenario gives us statistics that owner concern about and hope that these numbers can support the owner making right decision with a full picture with every perspective of business.
Here are the key points:
These are some other key metrics that you can refer with a subscription business.
SQL code
The techniques that you can learn from this case study :
Let’s get through some questions of this study case to review of technique.
A. Customer Journey
Click for code
B.Data Analysis Questions
Question 6. What is the number and percentage of customer plans after their initial free trial?
They key phrases here is “after initial free trial”.
Click for code
WITH CTE AS(
SELECT *,
LEAD(plan_id,1) OVER( PARTITION BY customer_id ORDER BY plan_id) As next_plan
FROM subscriptions
)
SELECT plan_name, count(*) as num_plan, Cast(count(next_plan) as float) * 100 / (select count(distinct customer_id) from subscriptions) as perc_next_plan
FROM CTE c
LEFT JOIN plans p ON c.next_plan = p.plan_id
WHERE c.plan_id = 0 and next_plan is not NULL
GROUP BY plan_name,next_plan;
We have 3 PARTS with 13 questions. You can access my github link for full code and explanation
My Github