Last active
January 11, 2017 05:57
-
-
Save yyoshiki41/742763bfc40ed001c90d58dd689a48e9 to your computer and use it in GitHub Desktop.
当月の獲得数から、着地予想を出す。(線形近似)
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 | |
count(*) AS count, | |
floor( | |
COUNT(*) * date_part('day', DATE_TRUNC('month', now() + '1 months') + '-1 days') / date_part('day', now()) | |
) AS forecast | |
FROM user | |
WHERE registered_at >= CAST(DATE_TRUNC('month', now()) AS TIMESTAMP) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment