Mysql查询计数

时间:2011-05-06 11:28:42

标签: php mysql

我希望表中的所有记录属于一个集合,并且特定的朋友ID不存在不超过两次

类似这样的事情

SELECT * FROM `friends` WHERE count(`friend_id`) < 2 and friend_id in (1,2,3,4)

1 个答案:

答案 0 :(得分:2)

你应该尝试:

SELECT * FROM friends where friend_id in (1,2,3,4) group by friend_id having count(friend_id) < 2