SELECT R.ID, R.Recipe, R.Directions
FROM Ingredients_tbl I
INNER JOIN recipe_to_ingredient RI ON I.id = RI.id_ingredient
INNER JOIN recipes_tbl R ON R.id = R.id_recipe
WHERE I.ID IN (1 ,2)
GROUP BY R.ID, R.Recipe, R.Directions
HAVING COUNT(*) > 1
Deve fazê-lo, embora os ingredientes neste exemplo sejam codificados para serem apenas 1 ou 2. Eu precisaria saber mais sobre como você pretende fornecer os IDs dos ingredientes para fornecer mais nessa frente.