lot of things, should have committed way earlier

This commit is contained in:
Pablo Martin 2024-03-13 10:11:46 +01:00
parent 8b2dca174f
commit 89aed285db
8 changed files with 52 additions and 21 deletions

View file

@ -1,7 +1,7 @@
with
hardcoded_rates as (select * from {{ ref("stg_seed__hardcoded_currency_rates") }}),
dates as (select * from {{ ref("int_dates") }})
select d.date_day, r.*
select d.date_day as rate_date, r.*
from dates d
cross join hardcoded_rates r
where d.date_day between '2020-01-01' and '2025-12-31'