table alias

This commit is contained in:
Pablo Martin 2024-06-25 11:44:00 +02:00
parent 200c324b68
commit bf54548654

View file

@ -3,35 +3,37 @@ with
select * from {{ ref("stg_xero__bank_transactions") }}
)
select
id_bank_transaction,
id_prepayment,
id_overpayment,
reference,
transaction_type,
transaction_status,
transaction_at_utc,
date_string,
total_amount_local_curr,
(total_amount_local_curr * exchange_rate_to_gbp)::numeric(
bt.id_bank_transaction,
bt.id_prepayment,
bt.id_overpayment,
bt.reference,
bt.transaction_type,
bt.transaction_status,
bt.transaction_at_utc,
bt.date_string,
bt.total_amount_local_curr,
(bt.total_amount_local_curr * bt.exchange_rate_to_gbp)::numeric(
18, 4
) as total_amount_in_gbp,
total_amount_wo_tax_local_curr,
(total_amount_wo_tax_local_curr * exchange_rate_to_gbp)::numeric(
bt.total_amount_wo_tax_local_curr,
(bt.total_amount_wo_tax_local_curr * bt.exchange_rate_to_gbp)::numeric(
18, 4
) as total_amount_wo_tax_in_gbp,
total_tax_local_curr,
(total_tax_local_curr * exchange_rate_to_gbp)::numeric(18, 4) as total_tax_in_gbp,
transaction_currency_iso_4217,
exchange_rate_to_gbp,
line_amount_tax_inclusiveness,
full_contact_details,
line_items,
bank_account,
is_reconciled,
has_attachments,
url,
external_link_provider_name,
updated_at_utc,
updated_date_utc,
dwh_extracted_at_utc
from stg_xero__bank_transactions
bt.total_tax_local_curr,
(bt.total_tax_local_curr * bt.exchange_rate_to_gbp)::numeric(
18, 4
) as total_tax_in_gbp,
bt.transaction_currency_iso_4217,
bt.exchange_rate_to_gbp,
bt.line_amount_tax_inclusiveness,
bt.full_contact_details,
bt.line_items,
bt.bank_account,
bt.is_reconciled,
bt.has_attachments,
bt.url,
bt.external_link_provider_name,
bt.updated_at_utc,
bt.updated_date_utc,
bt.dwh_extracted_at_utc
from stg_xero__bank_transactions bt