Skip to content

Commit

Permalink
- Re-ordered columns (mistake in formatting)
Browse files Browse the repository at this point in the history
  • Loading branch information
mescanne committed Aug 14, 2024
1 parent e7f704f commit 2cf7c0d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ WITH data AS (
s.security_type,
s.security_status,
a.account_number,
mc.region AS region,
DENSE_RANK() OVER (
PARTITION BY
a.account_number
Expand All @@ -52,7 +51,8 @@ WITH data AS (
s.valuation_date DESC,
s.security_value DESC,
s.sec_number DESC
) AS security_rank
) AS security_rank,
mc.region AS region
FROM {{ ref('eph_securities_preprocessing') }} AS s
INNER JOIN {{ ref('src_link_securities_accounts') }} AS x
ON s.sec_number = x.sec_number
Expand Down

0 comments on commit 2cf7c0d

Please sign in to comment.