7 lines
278 B
SQL
7 lines
278 B
SQL
with
|
|
hardcoded_rates as (select * from {{ ref("stg_seed__hardcoded_currency_rates") }}),
|
|
dates as (select * from {{ ref("int_dates") }})
|
|
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'
|