Skip to content

Commit

Permalink
projectsetting_latest table (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaymedina authored Nov 22, 2024
1 parent dc09e50 commit 775492b
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
use schema {{database_name}}.synapse; --noqa: JJ01,PRS,TMP,CP01

CREATE DYNAMIC TABLE IF NOT EXISTS PROJECTSETTING_LATEST
TARGET_LAG = '1 day'
WAREHOUSE = compute_xsmall
AS
WITH latest_unique_rows AS (
SELECT
*
FROM
{{database_name}}.synapse_raw.projectsettingsnapshots --noqa: TMP
WHERE
SNAPSHOT_TIMESTAMP >= CURRENT_TIMESTAMP - INTERVAL '14 DAYS'
QUALIFY ROW_NUMBER() OVER (
PARTITION BY id
ORDER BY change_timestamp DESC, snapshot_timestamp DESC
) = 1
)
SELECT
*
FROM
latest_unique_rows
ORDER BY
latest_unique_rows.id ASC;

0 comments on commit 775492b

Please sign in to comment.