Last active
April 26, 2022 10:55
-
-
Save vvgsrk/e3e519cd20f01313d56112cb3f864629 to your computer and use it in GitHub Desktop.
Product Info Latest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH product_info AS ( | |
SELECT | |
ROW_NUMBER() over ( | |
PARTITION BY product_id | |
ORDER BY | |
__event_ts DESC | |
) AS row_rank,* | |
FROM | |
{{ ref('src_product_management_product_history') }} | |
) | |
SELECT | |
* | |
FROM | |
product_info | |
WHERE | |
row_rank = 1 | |
ORDER BY | |
product_id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment