account_users
-----
id | primary_key
posts
-----
post_id | primary_key
author | foreign key to account_users.id
2つのテーブルがあるとしましょう。account_users にはユーザーがいます。posts は投稿を保持します。
投稿数 (*) が 5 を超えるすべてのユーザーを選択するにはどうすればよいですか?
@Timex
以下のクエリを試してください。
Select au.ID from account_users au
inner join posts p on au.ID = p.author
Group By au.ID
having COUNT(p.post_id) > 5
これを試して
SELECT au.*,p.*
FROM account_users au
INNER JOIN posts p
ON p.account_users.id = au.id
GROUP BY p.post_id
HAVING count(*) > 5