Coinsider two tables User and Posts with 1-N relation between user-posts.
Is there a way I can execute a query in which I can return users with atleast one post, and users with more than 1 post.
I want the result to be like this

Explanation:
user 1 Has 3 Posts, so increment 1 on both count(1 or more post),count (more than 1) column //category: Design
user 2 Has 2 Posts, so increment 1 on both count(1 or more post),count (more than 1) column // category: Engineering
user 3 Has 1 Post, so increment 1 on count(more than 1) column only. // category: Design