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

45 lines
1.1 KiB
SQL

{{ 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('users_ab2') }}
select
{{ dbt_utils.surrogate_key([
'_id',
'code',
'info',
adapter.quote('name'),
'team',
'zalo',
'email',
'phone',
'avatar',
boolean_to_string('banned'),
'segment',
'facebook',
boolean_to_string('hasorder'),
'referral',
array_to_string('segments'),
'createdat',
'statistic',
'updatedat',
'membership',
'lastorderat',
'firstorderat',
'registerfrom',
'searchstring',
'adjusttracker',
boolean_to_string('isupdatedinfo'),
'identification',
'lastactivatedat',
'lastviewnotificationat',
]) }} as _airbyte_users_hashid,
tmp.*
from {{ ref('users_ab2') }} tmp
-- users
where 1 = 1