1

既知の変数は Item (この場合は Car) だけです。

知っているアイテムと同じ色のすべての行を表示するクエリを実行したいと考えています。

例.車のクエリを実行したい。

SELECT * from TABLE WHERE (アイテムの色は車の色と一致します)

ITEM             COLOR
Car              Blue
House            Red
Boat             Green
Jetski           Red
4

3 に答える 3

1

編集

select * from table where color = (select color from table where item = 'Car');
于 2012-10-29T05:47:20.167 に答える
0
select * from table where color In (select color from table where item = 'Car');
于 2012-10-29T05:57:47.620 に答える
0

これも機能します:

select table.*
from table inner join table table_1 using (COLOR)
where table_1.ITEM = 'Car';
于 2012-10-29T06:21:24.163 に答える