Created
May 11, 2021 05:59
-
-
Save ittus/d1b5ecd0b16d62696f66acebd54118af to your computer and use it in GitHub Desktop.
[Medium] Cohort - 6
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 B.start_time, S.num_users AS total_users, B.period_number, B.num_users AS total_repeators | |
FROM retention_table B | |
LEFT JOIN cohort_size S ON B.start_time = S.start_time | |
WHERE B.start_time IS NOT NULL | |
ORDER BY 1, 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment