Skip to content

Instantly share code, notes, and snippets.

@mattm
Created November 2, 2017 14:46
Embed
What would you like to do?
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