クエリ結果を変数に設定し、その結果を別のクエリで使用しようとしています。
だから今、私はいくつかの種類のウィスキーを成分表に持っていて、それらすべてを見つけることができます:
CREATE TEMPORARY TABLE TempTable (Ingredient_Id int);
Insert into TempTable Select Ingredient_Id from ingredients where INSTR(Ingredient_Name,'Whiskey')>0;
これにより、必要なすべてのIDが得られます。次に、次の方法で関連データを取得しようとしています。
select drink_names.*,ingredients.*, drink_recipes.*
from drink_recipes
Left JOIN drink_names ON drink_recipes.Drink_Id = drink_names.Drink_Id
Left JOIN ingredients ON ingredients.Ingredient_Id = drink_recipes.Ingredient_Id
where drink_recipes.Ingredient_Id in TempTable #This is the problem
Order By Drink_Name
の各IDでこのクエリを実行する方法がわかりませんTempTable