hardcoded rates for all dates
This commit is contained in:
parent
05d8640417
commit
134580c3f6
1 changed files with 7 additions and 0 deletions
|
|
@ -0,0 +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.*
|
||||||
|
from dates d
|
||||||
|
cross join hardcoded_rates r
|
||||||
|
where d.date_day between '2020-01-01' and '2025-12-31'
|
||||||
Loading…
Add table
Add a link
Reference in a new issue