only hardcode starting point of rates, not ending

This commit is contained in:
Pablo Martin 2024-03-13 17:49:26 +01:00
parent 689d5eff16
commit 1f58a6ba03

View file

@ -4,4 +4,4 @@ with
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'
where d.date_day > cast('2020-01-01' as date)