我有用于存储食谱基本的数据结构。 它包括如下三个表:
表1 -配方(recipe_id,recipe_name)
表2 -将成分(ingredient_id,ingredient_name)
表3 - Recipe_Ingredients(recipe_id,ingredient_id)
添加新的配方时,想知道插入最佳实践我所遇到的一个问题。
目前,关于提交我插入食谱表的形式,该recipe_id是自动产生的。 然后我插入成分表,再ingredient_id是自动产生的。 在提交的第三步,然后插入Recipe_Ingredients表,但我如何才能配方的价值和刚才已经为了创建它们插入Recipe_Ingredients表成分IDS?
我现在有单独的PHP函数来插入配方和成分表。