23 lines
574 B
MySQL
23 lines
574 B
MySQL
|
{{ config(
|
||
|
indexes = [{'columns':['_airbyte_emitted_at'],'type':'btree'}],
|
||
|
schema = "unibag",
|
||
|
tags = [ "nested" ]
|
||
|
) }}
|
||
|
-- Final base SQL model
|
||
|
-- depends_on: {{ ref('customers_info_ab3') }}
|
||
|
select
|
||
|
_airbyte_customers_hashid,
|
||
|
{{ adapter.quote('name') }},
|
||
|
email,
|
||
|
address,
|
||
|
companyname,
|
||
|
taxidentificationnumber,
|
||
|
_airbyte_ab_id,
|
||
|
_airbyte_emitted_at,
|
||
|
{{ current_timestamp() }} as _airbyte_normalized_at,
|
||
|
_airbyte_info_hashid
|
||
|
from {{ ref('customers_info_ab3') }}
|
||
|
-- info at customers/info from {{ ref('customers') }}
|
||
|
where 1 = 1
|
||
|
|