次の表の Feature1 と Feature2 の両方を含む車と機能 (BMW とトヨタ) を取得するにはどうすればよいですか?
Select Car,Feature
from Table
where Feature in ('Feature1','Feature2')
は、Feature1 のみを持つ Honda を含む 3 台すべての車を示します。これは、IN 句に数百の値を含めることができる実際のクエリの単純化された例です。
Car Feature
----- --------
BMW Feature1
BMW Feature2
BMW Feature3
Toyota Feature1
Toyota Feature2
Honda Feature1
ありがとう、キラン