Skip to content

Instantly share code, notes, and snippets.

@lfy79001
Created May 3, 2024 02:09
Show Gist options
  • Save lfy79001/1dd249736cb49923bdecaf38ccd24dfd to your computer and use it in GitHub Desktop.
Save lfy79001/1dd249736cb49923bdecaf38ccd24dfd to your computer and use it in GitHub Desktop.
{{ config(enabled=var('ad_reporting__google_ads_enabled', True)) }}
with stats as (
select *
from {{ var('account_stats') }}
),
accounts as (
select *
from {{ var('account_history') }}
where is_most_recent_record = True
),
fields as (
select
stats.source_relation,
stats.date_day,
accounts.account_name,
stats.account_id,
accounts.currency_code,
accounts.auto_tagging_enabled,
accounts.time_zone,
sum(stats.spend) as spend,
sum(stats.clicks) as clicks,
sum(stats.impressions) as impressions
{{ fivetran_utils.persist_pass_through_columns(pass_through_variable='google_ads__account_stats_passthrough_metrics', transform = 'sum') }}
from stats
left join accounts
on stats.account_id = accounts.account_id
and stats.source_relation = accounts.source_relation
{{ dbt_utils.group_by(7) }}
)
select *
from fields
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment