Skip to content

Instantly share code, notes, and snippets.

@mattm
Created November 2, 2017 14:46
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 mattm/df884c0682134c5048532fa667502e2f to your computer and use it in GitHub Desktop.
Save mattm/df884c0682134c5048532fa667502e2f to your computer and use it in GitHub Desktop.
SELECT users.user_id, COUNT(post_id) AS post_count
FROM users
LEFT JOIN posts ON posts.user_id = users.user_id
GROUP BY 1
+---------+------------+
| user_id | post_count |
+---------+------------+
| 1 | 3 |
| 2 | 2 |
| 3 | 0 |
+---------+------------+
@hemeshSurana
Copy link

correct one, it's the same case i was trying to resolve. Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment