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

46 lines
1.2 KiB
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('order_items_ab2') }}
select
{{ dbt_utils.surrogate_key([
'_id',
2022-05-11 04:21:03 +00:00
'sku',
2022-03-22 04:03:52 +00:00
adapter.quote('date'),
adapter.quote('user'),
2022-05-11 04:21:03 +00:00
'brand',
2022-03-22 04:03:52 +00:00
adapter.quote('order'),
2022-05-11 04:21:03 +00:00
'price',
2022-03-22 04:03:52 +00:00
'status',
2022-05-11 04:21:03 +00:00
'teamid',
2022-03-22 04:03:52 +00:00
'product',
2022-05-11 04:21:03 +00:00
'voucher',
2022-03-22 04:03:52 +00:00
'customer',
'quantity',
'createdat',
2022-05-11 04:21:03 +00:00
'inventory',
2022-03-22 04:03:52 +00:00
'totalsell',
'updatedat',
'cashbackat',
2022-05-11 04:21:03 +00:00
array_to_string('promotions'),
2022-03-22 04:03:52 +00:00
'totalprice',
'deliveredat',
2022-05-11 04:21:03 +00:00
'teammemberid',
boolean_to_string('isassigncoupon'),
'totalpromotion',
boolean_to_string('inwholesalerange'),
'vouchercashtotal',
'wholesalerangeid',
'totalwholesalebonus',
'totalsellywholesalebonus',
2022-03-22 04:03:52 +00:00
]) }} as _airbyte_order_items_hashid,
tmp.*
from {{ ref('order_items_ab2') }} tmp
-- order_items
where 1 = 1