Did you try
select title from recipe join ingredient as i1 on recipe.recipeId= i1.recipeId join ingredient as i2 on recipe.recipeId= i2.recipeId where (i1.ingredient = "egg" and i1.amount = 2) and i2.ingredient = "water" ;
?