こんにちは、customers と customer_items の 2 つのテーブルがあります。2番目のテーブルの両方のテーブルにcustomer_idがあり、各顧客は複数のアイテムを持つことができるため、テーブルは次のようになります
id | item
----------------------------
1501 | pillow
1501 | blanket
1501 | others
1502 | pillow
1502 | blanket
1502 | others
枕と毛布の両方を持っている顧客をmysqlクエリで選択するにはどうすればよいですか
これが私の最後のアプローチです
select custlist.id FROM customers custlist LEFT JOIN customer_items custitems ON custitems.id=custlist.id WHERE (custitems.items='pillow' AND custitems.items='blanket') UNION ALL