Hi,
I have the following table which I am trying to convert to BCNF (3NF). It represents items in a smart fridge, each item is represented by a row...
food_id       description       food_type       re-order_level       brand       expiry_date
m021           Mince               Meat                 3                 Tesco           28 March
v055           Peas                Veg                   1                 BirdsEye           5 May
m025           Mince               Meat                 3                 Tesco           30 March
v063           Chips               Veg                   2                 McCain           9 September
v072           Peas               veg                   2                 Tesco           8 June
So far I have made the following tables
table1 (food_id*, description, food_type, brand, expiry_date)
table2 (description^, brand^, re-order_level)
* = primary key
^ = foreign key
I need to know, is this correct and is there any thing more I can do ?
Any help would be greatly appreciated, im really stuck on this...
Thanks
Chris.