B
brianv
i have 3 tbls
Recipes
RecipeId autoNumber
Recipe text
one 2 many
RecipeIngredients
RecipeIngredientsId autoNumber
RecipeId number
IngredientId number
many 2 one
Ingredients
IngredientId autoNumber
Ingredient text
what would the select sql look like to get all the Ingredients.Ingredient
for a given Recipes.RecipeId
Recipes
RecipeId autoNumber
Recipe text
one 2 many
RecipeIngredients
RecipeIngredientsId autoNumber
RecipeId number
IngredientId number
many 2 one
Ingredients
IngredientId autoNumber
Ingredient text
what would the select sql look like to get all the Ingredients.Ingredient
for a given Recipes.RecipeId