Created
August 18, 2022 06:32
-
-
Save adinsmoor/93cd64264307b005bbe896b1f7804519 to your computer and use it in GitHub Desktop.
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
-- 1A) dim_customers SQL | |
select | |
store_id || "-" || cast(id as string) as unique_id | |
, id | |
, store_id | |
, name | |
from {{ source('apjuice', 'users') }} | |
-- 1B) change config | |
{{ | |
config( | |
materialized='view' | |
) | |
}} | |
-- 2A) test and docs | |
- name: dim_customers | |
description: customer details | |
columns: | |
- name: unique_id | |
description: unique customer_id and store_id combination | |
tests: | |
- not_null | |
- unique | |
-- 2B) singular test | |
{{ | |
config( | |
error_if = '>10' | |
, warn_if = '>0' | |
) | |
}} | |
select * | |
from {{ ref('sales_items') }} | |
where product_cost < 0 | |
-- 3A) top_customers | |
select | |
s.store_id | |
, ss.unique_customer_id | |
, c.name | |
, sum(product_cost) as total_spend | |
from {{ ref('sales_items') }} as s | |
join {{ ref('sales') }} as ss on s.sale_id = ss.id | |
join {{ ref('dim_customers') }} as c on ss.unique_customer_id = c.unique_id | |
where | |
ss.unique_customer_id is not null | |
group by s.store_id, ss.unique_customer_id, c.name | |
order by total_spend desc | |
limit 100 | |
-- 3B) dim_customer_snapshot | |
{% snapshot dim_customers_snapshot %} | |
{{ | |
config( | |
unique_key='unique_id', | |
strategy='check', | |
check_cols='all' | |
) | |
}} | |
select * from {{ ref('dim_customers') }} | |
{% endsnapshot %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment