Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
少なくとも 25 の投稿またはコメントを持つすべてのユーザーを取得するために、さまざまな mysql 結合/選択を実行しようとしました。持つ
users id valid posts id user_id comments id user_id
そこで、少なくとも 25 件のコメントと投稿を含むすべてのユーザー レコードを取得しようとしています。
助けてください!
試す
select u.* from users u left outer join posts p on p.user_id = u.id left outer join comments c on c.user_id = u.id group by u.id having (count(p.id) + count(c.id)) >= 25