既知の変数は Item (この場合は Car) だけです。
知っているアイテムと同じ色のすべての行を表示するクエリを実行したいと考えています。
例.車のクエリを実行したい。
SELECT * from TABLE WHERE (アイテムの色は車の色と一致します)
ITEM COLOR
Car Blue
House Red
Boat Green
Jetski Red
既知の変数は Item (この場合は Car) だけです。
知っているアイテムと同じ色のすべての行を表示するクエリを実行したいと考えています。
例.車のクエリを実行したい。
SELECT * from TABLE WHERE (アイテムの色は車の色と一致します)
ITEM COLOR
Car Blue
House Red
Boat Green
Jetski Red
編集:
select * from table where color = (select color from table where item = 'Car');
select * from table where color In (select color from table where item = 'Car');
これも機能します:
select table.*
from table inner join table table_1 using (COLOR)
where table_1.ITEM = 'Car';