1: 2: 3: 4: 5: 6: 7: 8: 9:
select a1.RecipeTitle from dbo.Recipes a1 where 2 = ( select count(*) from dbo.Recipe_Ingredients a2 join dbo.Ingredients a3 on a2.IngredientID=a3.IngredientID where a3.IngredientName IN ( 'Beef', 'Onion' ) WHERE a1.RecipeID=a2.RecipeID )