29 lines
809 B
MySQL
29 lines
809 B
MySQL
|
|
/*
|
||
|
|
This model provides the necessary dates for each deal for deal-based KPIs models to work.
|
||
|
|
|
||
|
|
*/
|
||
|
|
with
|
||
|
|
int_dates as (select * from {{ ref("int_dates") }}),
|
||
|
|
int_core__unified_user as (select * from {{ ref("int_core__unified_user") }})
|
||
|
|
|
||
|
|
select distinct
|
||
|
|
d.year_number as year,
|
||
|
|
d.month_of_year as month,
|
||
|
|
d.day_of_month as day,
|
||
|
|
d.date_day as date,
|
||
|
|
u.id_deal,
|
||
|
|
d.month_start_date as first_day_month,
|
||
|
|
d.month_end_date as last_day_month
|
||
|
|
from int_core__unified_user u
|
||
|
|
inner join int_dates d on d.date_day >= u.created_date_utc
|
||
|
|
where
|
||
|
|
u.id_deal is not null
|
||
|
|
-- include only up-to yesterday
|
||
|
|
and now()::date > d.date_day
|
||
|
|
and (
|
||
|
|
-- keep all last day of the month
|
||
|
|
d.date_day = d.month_end_date
|
||
|
|
-- keep yesterday
|
||
|
|
or now()::date = d.date_day + 1
|
||
|
|
)
|