Created currency exchange tables
This commit is contained in:
parent
4958976733
commit
f64b17a223
3 changed files with 153 additions and 0 deletions
8
models/reporting/general/simple_exchange_rates.sql
Normal file
8
models/reporting/general/simple_exchange_rates.sql
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
with simple_exchange_rates as (select * from {{ ref("int_simple_exchange_rates") }})
|
||||
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
|
||||
from simple_exchange_rates
|
||||
Loading…
Add table
Add a link
Reference in a new issue