我想知道如果不重复4次,显示所有id_product的正确方法是什么。
这是我的桌子:
id_product id_related
55 1
55 2
55 3
55 4
11 1
11 123
11 12
36 12
36 9
36 14
36 654
我需要查找未添加4个相关产品的产品。
在这种情况下,我期望的结果是11。
最佳答案
像这样
select id_product, count(*)
from <table>
group by id_product
having count(*) < 4
关于mysql - MySQL:如果未完全重复4次,请选择ID,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23665276/