I am making a menu ordering system.
These are the main tables:
MenuByCycle
MenuByCycleID (PK)
Year
CycleID
MenuByDay
MenuByDayID
Day
MenuByCycleID (FK to MenuByCycle)
MenuByDiet
MenuByDietID
TypeOfDietID (PK)
MenuByDayID (PK, also a FK to MenuByDay Table)
FoodPerMenu
FoodByMenuID (PK)
MenuByDietID (FK to MenuByDiet Table)
FoodID
In a year there are 3 cycles.
The Menu changes daily depending on which cycle it is on.
There are different types of diets, and each day there is a food menu for each type of diet.
The MenuByDiet is a junction table between MenuByDay and FoodPerMenu.
Via data sub-sheets it works great but once I make a query to add a record in FoodPerMenu table it creates a duplicate MenuByCycle, and MenuByDiet records.
SQL Code:
SELECT MenuByCycle.CycleID, MenuByCycle.Year, MenuByDay.Day,
MenuByDiet.TipoOfDietID, FoodPerMenu.FoodID,
FROM ((MenuByCycle RIGHT JOIN MenuByDay ON MenuByCycle.MenuByCycleID = MenuByDay.MenuByCycleID) RIGHT JOIN
MenuByDiet ON MenuByDay.MenuByDayID = MenuByDiet.MenuByDayID)
RIGHT JOIN FoodPerMenu ON MenuByDiet.MenuByDietID =
FoodPerMenu.MenuByDietID;
In the query I set the Right joins so I could be able to enter data in the fields.
These are the main tables:
MenuByCycle
MenuByCycleID (PK)
Year
CycleID
MenuByDay
MenuByDayID
Day
MenuByCycleID (FK to MenuByCycle)
MenuByDiet
MenuByDietID
TypeOfDietID (PK)
MenuByDayID (PK, also a FK to MenuByDay Table)
FoodPerMenu
FoodByMenuID (PK)
MenuByDietID (FK to MenuByDiet Table)
FoodID
In a year there are 3 cycles.
The Menu changes daily depending on which cycle it is on.
There are different types of diets, and each day there is a food menu for each type of diet.
The MenuByDiet is a junction table between MenuByDay and FoodPerMenu.
Via data sub-sheets it works great but once I make a query to add a record in FoodPerMenu table it creates a duplicate MenuByCycle, and MenuByDiet records.
SQL Code:
SELECT MenuByCycle.CycleID, MenuByCycle.Year, MenuByDay.Day,
MenuByDiet.TipoOfDietID, FoodPerMenu.FoodID,
FROM ((MenuByCycle RIGHT JOIN MenuByDay ON MenuByCycle.MenuByCycleID = MenuByDay.MenuByCycleID) RIGHT JOIN
MenuByDiet ON MenuByDay.MenuByDayID = MenuByDiet.MenuByDayID)
RIGHT JOIN FoodPerMenu ON MenuByDiet.MenuByDietID =
FoodPerMenu.MenuByDietID;
In the query I set the Right joins so I could be able to enter data in the fields.