8weeksqlchallenge - Week 6

Case Study #6 - Clique Bait



Introduction

Clique Bait's unique combination of seafood commerce and data analytics, led by CEO Danny, has the potential to transform the seafood industry. By effectively utilizing the available datasets and employing data-driven solutions, Clique Bait can calculate funnel fallout rates, segment its customer base, and optimize the new campaign to enhance the online seafood shopping experience for its customers. This case study sets the stage for a journey into the world of data-driven seafood commerce, with promising prospects for Clique Bait's future success.


Case Study Insights

With a online store, the Funnel fallout Analysis is an effective way to analyze conversion and fallout in applications. It show how many users go through the full flow of steps to complete a purchase.

There are some advantages of Funnel Analysis that match with this case study :

  • Understanding User Behavior : Funnel analysis provides insights into how users interact with your product, website, or service.
  • Goal Tracking : Funnel analysis allows you to set specific goals and track progress toward those goals. This helps you measure the effectiveness of your campaigns and strategies and adjust them as needed.
  • Customer Insights : Funnel analysis can provide valuable insights into customer behavior and preferences, helping you better understand your target audience and tailor your offerings accordingly.

  • You can refer about Funnel Analysis here:
  • Funnel Analysis- Go all the way through the funnel


  • SQL code

    The techniques that you can learn from this case study :

  • JOINS SQL : 5 Best Practices for Writing SQL JOINS
  • Aggregate Functions : COUNT(), AVG() and SUM() Functions
  • Window Functions : How to use Window Functions
  • CTE : What Is a Common Table Expression (CTE) in SQL?

  • Let’s get through some questions of this study case to review of technique.

    Using a single SQL query - create a new output table which has the following details:

  • How many times was each product viewed?
  • How many times was each product added to cart?
  • How many times was each product added to a cart but not purchased (abandoned)?
  • How many times was each product purchased?
  • We need to highlight the keywords to answer question: product viewed, product added to cart, abandoned, purchased.

    Let us visualize the output table.
    Column Description
    product Name of the product
    views Number of views for each product
    cart_adds Number of cart adds for each product
    abandoned Number of times product was added to a cart, but not purchased
    purchased Number of times product was purchased
    These information would come from these 2 tables.
  • events table - visit_id, page_id, event_type
  • page_hierarchy table - page_id, product_category
  • Click for solution


  • Note 1 - In first CTE, find all customer have done event "Page View"
  • Note 2 - In VIEW_CTE CTE, count all customer with event 'Page View'
  • Note 3 - In ADD_CART_CTE CTE, count all customer with event 'Add to Cart'
  • Note 4 - In PURCHASE_CTE and 'PURCHASE_CTE_2' CTE, count all customer with event 'Purchase'
  • merge all CTE above using LEFT JOIN.
  • 												
                                                        WITH CTE AS (   SELECT distinct visit_id
                                                        FROM events e1 
                                                        JOIN event_identifier e2 ON e1.event_type = e2.event_type
                                                        WHERE event_name = 'Page View'),
                                        
                                        VIEW_CTE AS (   SELECT page_name,
                                                                product_category,
                                                                count(page_name) AS total_view
                                                                FROM events e1 
                                                                LEFT JOIN CTE c ON e1.visit_id = c.visit_id 
                                                                JOIN page_hierarchy p ON e1.page_id = p.page_id
                                                                JOIN event_identifier e2 ON e1.event_type = e2.event_type
                                                                WHERE product_category IS NOT NULL AND event_name = 'Page View' 
                                                                GROUP BY page_name,product_category),
                                        
                                        ADD_CART_CTE AS (SELECT page_name,
                                                                product_category,
                                                                count(page_name) AS total_add
                                                                FROM events e1 
                                                                LEFT JOIN CTE c ON e1.visit_id = c.visit_id 
                                                                JOIN page_hierarchy p ON e1.page_id = p.page_id
                                                                JOIN event_identifier e2 ON e1.event_type = e2.event_type
                                                                WHERE product_category IS NOT NULL AND event_name = 'Add to Cart' 
                                                                GROUP BY page_name,product_category),
                                        
                                        PURCHASE_CTE AS (SELECT visit_id
                                                        FROM events e1 
                                                        JOIN event_identifier e2 ON e1.event_type = e2.event_type
                                                        WHERE event_name = 'Purchase'),
                                        PURCHASE_CTE_2 AS (     SELECT  page_name,
                                                                        product_category,
                                                                        COUNT(e1.visit_id) as purchase_item
                                                                FROM events e1
                                                                RIGHT JOIN PURCHASE_CTE C on e1.visit_id = C.visit_id
                                                                JOIN page_hierarchy p ON e1.page_id = p.page_id
                                                                JOIN event_identifier e2 ON e1.event_type = e2.event_type
                                                                WHERE product_category IS NOT NULL AND event_name = 'Add to Cart'
                                                                GROUP BY page_name,product_category
                                                                )
                                        
                                        
                                        SELECT v.page_name,
                                                v.product_category,
                                                total_view,
                                                total_add,
                                                purchase_item, 
                                                (total_add - purchase_item) as abadoned_item
                                        INTO    product_stats
                                        FROM VIEW_CTE V
                                        LEFT JOIN ADD_CART_CTE A ON V.page_name = A.page_name
                                        LEFT JOIN PURCHASE_CTE_2 P ON V.page_name = P.page_name
                                        ORDER BY v.page_name;
                                        
                                        SELECT * 
                                        FROM product_stats;
    												
    											
  • The logic behind abadoned_item column is result of total_add minus purchase_item
  • Result Image description


    We have total 16 questions in 3 Parts. You can access my github link for full code and explanation

    My Github