21 lines
888 B
MySQL
21 lines
888 B
MySQL
|
{{ config(
|
||
|
indexes = [{'columns':['_airbyte_emitted_at'],'type':'btree'}],
|
||
|
schema = "_airbyte_unibag",
|
||
|
tags = [ "nested-intermediate" ]
|
||
|
) }}
|
||
|
-- SQL model to parse JSON blob stored in a single column and extract into separated field columns as described by the JSON Schema
|
||
|
-- depends_on: {{ ref('events_segments') }}
|
||
|
select
|
||
|
_airbyte_segments_hashid,
|
||
|
{{ json_extract_scalar('lastmonthsales', ['to'], ['to']) }} as {{ adapter.quote('to') }},
|
||
|
{{ json_extract_scalar('lastmonthsales', ['from'], ['from']) }} as {{ adapter.quote('from') }},
|
||
|
{{ json_extract_scalar('lastmonthsales', ['active'], ['active']) }} as active,
|
||
|
_airbyte_ab_id,
|
||
|
_airbyte_emitted_at,
|
||
|
{{ current_timestamp() }} as _airbyte_normalized_at
|
||
|
from {{ ref('events_segments') }} as table_alias
|
||
|
-- lastmonthsales at events/segments/lastMonthSales
|
||
|
where 1 = 1
|
||
|
and lastmonthsales is not null
|
||
|
|