2024-03-12 11:33:10 +01:00
|
|
|
with
|
|
|
|
|
hardcoded_rates as (select * from {{ ref("stg_seed__hardcoded_currency_rates") }}),
|
|
|
|
|
dates as (select * from {{ ref("int_dates") }})
|
2024-03-13 10:11:46 +01:00
|
|
|
select d.date_day as rate_date, r.*
|
2024-03-12 11:33:10 +01:00
|
|
|
from dates d
|
|
|
|
|
cross join hardcoded_rates r
|
|
|
|
|
where d.date_day between '2020-01-01' and '2025-12-31'
|