私はこのテーブルを持っています:
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
数量が1を超える属性「a」と数量が2を超える属性「b」を持つすべての異なるitem_idを取得したいと思います。
入れたら
select item_id
from table_name
where (attribute = a and quantity > 1) and (attribute = b and quantity >2)
結果が得られません...
どうすればこれを達成できますか?誰かが私が来週提出する予定の論文のために早く助けてください。