我有这张桌子:
id item_id attribute quantity
1 1 a 2
2 1 b 3
3 1 c 4
4 2 a 3
5 2 b 3
6 3 a 2
7 3 b 1
我想获取所有不同的 item_id,其属性“a”的数量超过 1,同时属性“b”的数量超过 2。
如果我把
select item_id
from table_name
where (attribute = a and quantity > 1) and (attribute = b and quantity >2)
我没有得到任何结果...
我如何做到这一点?请有人帮忙,这是我下周要交的一篇论文。