Created
May 29, 2022 22:43
-
-
Save markrittman/19cddf0884acc5acc4b413a9f5a7d599 to your computer and use it in GitHub Desktop.
Return first ten page views after landing on a particular page using Segment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with events as ( | |
select | |
anonymous_id, | |
user_id, | |
cast(null as string) as name, | |
cast(null as string) as email, | |
timestamp, | |
'page_view' as event_type, | |
concat(split(context_ip,'.')[safe_offset(0)],'.***.***.',split(context_ip,'.')[safe_offset(3)]) as context_ip, | |
context_page_path, | |
context_page_referrer, | |
context_page_title, | |
context_user_agent, | |
context_campaign_source, | |
context_campaign_medium, | |
context_campaign_name, | |
cast (null as string) as requirement | |
from | |
`ra-development.company_website.pages` | |
union all | |
select | |
anonymous_id, | |
user_id, | |
cast(null as string) as name, | |
cast(null as string) as email, | |
timestamp, | |
event as event_type, | |
concat(split(context_ip,'.')[safe_offset(0)],'.***.***.',split(context_ip,'.')[safe_offset(3)]) as context_ip, | |
context_page_path, | |
context_page_referrer, | |
context_page_title, | |
context_user_agent, | |
context_campaign_source, | |
context_campaign_medium, | |
context_campaign_name, | |
cast (null as string) as requirement | |
from | |
`ra-development.company_website.tracks` | |
where | |
event in ('podcast_episode_played', | |
'pricing_link_clicked', | |
'hero_image_clicked', | |
'contact_us_submitted', | |
'collateral_viewed', | |
'clicked_email_link', | |
'clicked_email', | |
'casestudy_clicked', | |
'booked_a_meeting', | |
'about_us_clicked', | |
'pressed_button', | |
'pressed_a_button', | |
'contact_us_pressed') | |
and | |
user_id != '5d2bb0e8-ba41-463c-a438-27bf8b3c3e35' | |
union all | |
select | |
anonymous_id, | |
user_id, | |
cast(null as string) as name, | |
cast(null as string) as email, | |
timestamp, | |
event as event_type, | |
cast(null as string) as context_ip, | |
cast(null as string), | |
cast(null as string), | |
cast(null as string), | |
cast(null as string), | |
utm_source as context_campaign_source, | |
cast(null as string) as context_campaign_medium, | |
utm_campaign as context_campaign_name, | |
meeting_purpose as requirement | |
from | |
`ra-development.zapier_source.meeting_booked` | |
where | |
anonymous_id is not null | |
union all | |
select | |
anonymous_id, | |
user_id, | |
name, | |
email, | |
timestamp, | |
'identify' as event_type, | |
cast(null as string) as context_ip, | |
cast(null as string), | |
cast(null as string), | |
cast(null as string), | |
cast(null as string), | |
cast(null as string) as context_campaign_source, | |
cast(null as string) as context_campaign_medium, | |
cast(null as string) as context_campaign_name, | |
cast(null as string) as requirement | |
from | |
`ra-development.zapier_source.identifies` | |
where | |
anonymous_id is not null | |
), | |
id_stitching as ( | |
select | |
distinct anonymous_id as anonymous_id, | |
last_value(user_id ignore nulls) over (partition by anonymous_id order by timestamp rows between unbounded preceding and unbounded following ) as user_id, | |
min(timestamp) over (partition by anonymous_id ) as first_seen_at, | |
max(timestamp) over (partition by anonymous_id ) as last_seen_at | |
from | |
events ), | |
mapped as ( | |
select | |
coalesce(i.user_id, | |
e.anonymous_id) as blended_user_id, | |
e.* | |
from | |
events e | |
left join | |
id_stitching i | |
using | |
(anonymous_id) | |
), | |
names_backfilled as ( | |
select | |
* except (name, | |
email), | |
last_value(email ignore nulls) over (partition by blended_user_id order by timestamp rows between unbounded preceding and unbounded following ) as email, | |
last_value(name ignore nulls) over (partition by blended_user_id order by timestamp rows between unbounded preceding and unbounded following ) as name | |
from | |
mapped ), | |
ordered as ( | |
select | |
blended_user_id, | |
replace(context_page_title,' — Rittman Analytics','') as title, | |
row_number() over (partition by blended_user_id order by timestamp) as event_seq | |
from names_backfilled | |
where event_type = 'page_view' | |
) | |
select | |
* | |
from ordered | |
where blended_user_id in (select blended_user_id | |
from ordered | |
where event_seq = 1 and title = 'Multi-Channel Marketing Attribution using Segment, Google BigQuery, dbt and Looker' | |
) | |
and event_seq < 11 | |
limit 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment