请帮助查询。 需要选择从“ sender_id ”发送5条或更多条消息的所有发件人到5个或更多不同的“ target_id ”
**sender_id - target_id**<br>
1 - 2
1 - 2
1 - 2
1 - 2
1 - 3
1 - 4
1 - 24
1 - 5
2 - 5
...
谢谢
答案 0 :(得分:0)
Select sender_id,count(Distinct target_id) from table
Group by sender_id
Having count(Distinct target_id) >= 5
将MySQL group by
与Count Distinct
记录