Skip to content

Instantly share code, notes, and snippets.

@adambarber
Created June 2, 2013 19:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adambarber/5694635 to your computer and use it in GitHub Desktop.
Save adambarber/5694635 to your computer and use it in GitHub Desktop.
SELECT date_trunc('week', "created_at") AS "Week", count(*) AS "New User Signups"
FROM Users
GROUP BY "Week"
ORDER BY "Week" DESC;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment