# Description Reporting version of Stay Disrupt Conversion Funnel. It's just a copy from the intermediate model. # Checklist - [X] The edited models and dependants run properly with production data. - [X] The edited models are sufficiently documented. - [X] The edited models contain PK tests, and I've ran and passed them. - [X] I have checked for DRY opportunities with other models and docs. - [X] I've picked the right materialization for the affected models. # Other - [ ] Check if a full-refresh is required after this PR is merged. Related work items: #30277
16 lines
563 B
SQL
16 lines
563 B
SQL
with
|
|
int_stay_disrupt_conversion_funnel as (
|
|
select * from {{ ref("int_stay_disrupt_conversion_funnel") }}
|
|
)
|
|
select
|
|
month_start_date,
|
|
guest_product_name,
|
|
guest_product_latest_display_name,
|
|
count_active_accounts,
|
|
count_active_accounts_with_guest_product_offered,
|
|
count_active_accounts_with_guest_product_payments,
|
|
count_guest_journeys_started,
|
|
count_guest_journeys_started_with_guest_product_offered,
|
|
count_guest_product_payments,
|
|
sum_amount_paid_without_taxes_in_gbp
|
|
from int_stay_disrupt_conversion_funnel
|