Skip to content

Instantly share code, notes, and snippets.

@mattm
Created November 1, 2017 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattm/33300024e20b6c3962c8c6817fc966ab to your computer and use it in GitHub Desktop.
Save mattm/33300024e20b6c3962c8c6817fc966ab to your computer and use it in GitHub Desktop.
SELECT user_id, COUNT(*) AS post_count
FROM posts
GROUP BY user_id
+---------+------------+
| user_id | post_count |
+---------+------------+
| 1 | 3 |
| 2 | 2 |
+---------+------------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment