mirror of
https://gitlab.com/cief-data/dbt_cloud.git
synced 2026-08-19 04:14:00 +00:00
50 lines
1.0 KiB
SQL
50 lines
1.0 KiB
SQL
-- IMPORTS
|
|
WITH announcements AS (
|
|
SELECT * FROM {{ source('src_exchange_mysql', 'announcements') }}
|
|
),
|
|
|
|
|
|
-- LOGIC
|
|
announcements_rename AS (
|
|
|
|
SELECT
|
|
id,
|
|
title,
|
|
description,
|
|
starting_on AS started_at,
|
|
ending_on AS ended_at,
|
|
is_all_day,
|
|
duration,
|
|
is_recurring,
|
|
recurrence_pattern,
|
|
deleted_at,
|
|
created_at,
|
|
updated_at,
|
|
current_timestamp() as _dbt_ran_at
|
|
|
|
FROM announcements
|
|
),
|
|
|
|
|
|
-- FINAL
|
|
final__base_exchange__announcements AS (
|
|
|
|
SELECT
|
|
id,
|
|
title,
|
|
description,
|
|
started_at,
|
|
ended_at,
|
|
is_all_day,
|
|
duration,
|
|
is_recurring,
|
|
recurrence_pattern,
|
|
deleted_at,
|
|
created_at,
|
|
updated_at,
|
|
current_timestamp() as _dbt_ran_at
|
|
|
|
FROM announcements_rename
|
|
)
|
|
|
|
SELECT * FROM final__base_exchange__announcements |