data-dwh-dbt-project/models/reporting/general/simple_exchange_rates.sql

9 lines
286 B
MySQL
Raw Normal View History

2024-06-19 11:59:45 +02:00
with int_simple_exchange_rates as (select * from {{ ref("int_simple_exchange_rates") }})
2024-06-19 11:52:28 +02:00
select
from_currency as from_currency,
to_currency as to_currency,
rate as rate,
rate_date_utc as rate_date_utc,
updated_at_utc as updated_at_utc
2024-06-19 11:59:45 +02:00
from int_simple_exchange_rates