dbt-selly/models/generated/airbyte_ctes/unibag/user_identifications_ab3.sql

38 lines
1018 B
MySQL
Raw Normal View History

2022-03-22 04:03:52 +00:00
{{ config(
indexes = [{'columns':['_airbyte_emitted_at'],'type':'btree'}],
unique_key = '_airbyte_ab_id',
schema = "_airbyte_unibag",
tags = [ "top-level-intermediate" ]
) }}
-- SQL model to build a hash column based on the values of this record
-- depends_on: {{ ref('user_identifications_ab2') }}
select
{{ dbt_utils.surrogate_key([
'_id',
'dob',
adapter.quote('name'),
'note',
adapter.quote('type'),
adapter.quote('user'),
'gender',
'nation',
adapter.quote('number'),
'status',
'address',
2022-05-10 14:30:53 +00:00
object_to_string('backside'),
2022-03-22 04:03:52 +00:00
'birthday',
'createdat',
2022-05-10 14:30:53 +00:00
object_to_string('frontside'),
2022-03-22 04:03:52 +00:00
'issuedate',
'updatedat',
'expirydate',
'issueplace',
'timeupdate',
2022-05-10 14:30:53 +00:00
object_to_string('detectinformation'),
2022-03-22 04:03:52 +00:00
]) }} as _airbyte_user_identifications_hashid,
tmp.*
from {{ ref('user_identifications_ab2') }} tmp
-- user_identifications
where 1 = 1