I am currently trying to create a database where I have information on recipes in various tables.
recipe info table includes fields detailing name of the recipe, the date, type, location, etc.
recipe directions table is linked to the first table in a one to one relationship and has fields for directions and comments.
recipe ingredients table is linked to the first table in a one to many relationship and has all the ingredients/measurements for each recipe.
Say that my main table (recipe info) has two keys: recipe and chef (one recipe can have more than one chef so I need two variables). I am attempting to link these items on a form so I can enter all the info for a recipe at once. Do I need to type the recipe and chef three times in order to enter data in all the tables?
recipe info table includes fields detailing name of the recipe, the date, type, location, etc.
recipe directions table is linked to the first table in a one to one relationship and has fields for directions and comments.
recipe ingredients table is linked to the first table in a one to many relationship and has all the ingredients/measurements for each recipe.
Say that my main table (recipe info) has two keys: recipe and chef (one recipe can have more than one chef so I need two variables). I am attempting to link these items on a form so I can enter all the info for a recipe at once. Do I need to type the recipe and chef three times in order to enter data in all the tables?