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

35 lines
883 B
MySQL
Raw Permalink 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('teams_ab2') }}
select
{{ dbt_utils.surrogate_key([
'_id',
'code',
adapter.quote('desc'),
2022-05-11 04:21:03 +00:00
'logo',
2022-03-22 04:03:52 +00:00
adapter.quote('name'),
2022-05-11 04:21:03 +00:00
adapter.quote('level'),
2022-03-22 04:03:52 +00:00
boolean_to_string('active'),
boolean_to_string('isfull'),
'citycode',
'adminuser',
'createdat',
2022-05-11 04:21:03 +00:00
'statistic',
2022-03-22 04:03:52 +00:00
'updatedat',
'invitelink',
2022-05-11 04:21:03 +00:00
'information',
2022-03-22 04:03:52 +00:00
'searchstring',
'inactivereason',
'changingnamecount',
]) }} as _airbyte_teams_hashid,
tmp.*
from {{ ref('teams_ab2') }} tmp
-- teams
where 1 = 1