Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 1.13 KB

093_webinar_popularity.md

File metadata and controls

46 lines (32 loc) · 1.13 KB

SQL Everyday #093

Webinar Popularity

Site: DataLemur
Difficulty per Site: Easy

Problem

As a Data Analyst on Snowflake's Marketing Analytics team, you're analyzing the CRM to determine what percent of marketing touches were of type "webinar" in April 2022. Round your percentage to the nearest integer.

Did you know? Marketing touches, also known as touch points are the brand's (Snowflake's) point of contact with the customers, from start to finish. [Full Description]

Submitted Solution

-- Submitted Solution
SELECT
  100 * COUNT(*) FILTER (WHERE event_type = 'webinar') / COUNT(*) AS webinar_pct
FROM marketing_touches
WHERE event_date BETWEEN '04/01/2022' AND '05/01/2022'
;

Site Solution

-- DataLemur Solution 
SELECT 
  ROUND(100 *
    SUM(CASE WHEN event_type='webinar' THEN 1 ELSE 0 END)/
    COUNT(*)) as webinar_pct
FROM marketing_touches
WHERE DATE_TRUNC('month', event_date) = '04/01/2022';

Notes

TODO

NB

DATE_TRUNC() vs BETWEEN

Go to Index
Go to Overview