Created
September 23, 2022 16:31
-
-
Save nuria/08949769aba66df9ded9bd899425f95e to your computer and use it in GitHub Desktop.
common window function gotcha
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
select *, | |
case | |
when confirmed_at is not null and price_dollars > 0 | |
then row_number() over ( | |
partition by user_id, price_dollars > 0 | |
order by confirmed_at | |
) | |
else null | |
end as user_enroll_rank, | |
case | |
when confirmed_at is not null and price_dollars > 0 | |
then row_number() over ( | |
partition by learner_id, price_dollars > 0 | |
order by confirmed_at | |
) | |
else null | |
end as learner_enroll_rank |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment