4.3 Queries, queries, queries... and churn analysis
Query Service - Queries, queries, queries... and churn analysis
Objective
Context
4.3.1 Write basic queries for data analysis
Timestamp
select date_format( timestamp , 'yyyy-MM-dd') AS Day,
count(*) AS productViews
from demo_system_event_dataset_for_website_global_v1_1
where --aepTenantId--.demoEnvironment.brandName IN ('Luma Telco', 'Citi Signal')
and eventType = 'commerce.productViews'
group by Day
limit 10;Top 5 products viewed
SQL
Product Interaction funnel, from viewing to buying
Identify visitors with risk to Churn (visit page => Cancel Service)
4.3.2 Advanced Queries
Adobe Defined Functions
What do people do on the site before reaching the "Cancel Service" page as the 3rd page in a session?
How much time do we have before a visitor calls the call center after visiting the "Cancel Service" Page?
And what is the outcome of that contact?
What is the loyalty profile of these customers?
From what region do they visit us?
Call Center Interaction Analysis



Last updated