31 lines
896 B
SQL
31 lines
896 B
SQL
{{ config(
|
|
indexes = [{'columns':['_airbyte_emitted_at'],'type':'btree'}],
|
|
schema = "_airbyte_unibag",
|
|
tags = [ "nested-intermediate" ]
|
|
) }}
|
|
-- SQL model to build a hash column based on the values of this record
|
|
-- depends_on: {{ ref('suppliers_reviewstatistic_ab2') }}
|
|
select
|
|
{{ dbt_utils.surrogate_key([
|
|
'_airbyte_suppliers_hashid',
|
|
'total',
|
|
'totalreview',
|
|
'totalscore1',
|
|
'totalscore2',
|
|
'totalscore3',
|
|
'totalscore4',
|
|
'totalscore5',
|
|
'scoreaverage',
|
|
'totalhasmedia',
|
|
'totalhascontent',
|
|
'scoreaverageweektotal',
|
|
'scoreaverageyeartotal',
|
|
'scoreaveragemonthtotal',
|
|
'scoreaveragetwomonthtotal',
|
|
]) }} as _airbyte_reviewstatistic_hashid,
|
|
tmp.*
|
|
from {{ ref('suppliers_reviewstatistic_ab2') }} tmp
|
|
-- reviewstatistic at suppliers/reviewStatistic
|
|
where 1 = 1
|
|
|