Hi all!
I'm designing what should be a simple table to track items that can have relationships with other items. Am I going to create headaches for later if I store a list of items each item is related to as a CSV list in a field (as opposed to creating another table to store those values as seperate records)? Example:
It comes down to whether it is going to be more work to parse that field looking for a value, or link to a seperate table that exists for the sole purpose of storing those values, as follows:
Thanks for any input you care to share!
VBAjedi
I'm designing what should be a simple table to track items that can have relationships with other items. Am I going to create headaches for later if I store a list of items each item is related to as a CSV list in a field (as opposed to creating another table to store those values as seperate records)? Example:
Code:
Item_Num Item_Description Related_Items_CSV
1 Some Item 3,4,11,13
2 Another Item 4,6,8,9
etc. . .
Code:
Item_Num Related_Item
1 3
1 4
1 11
1 13
2 4
etc. . .
Thanks for any input you care to share!
VBAjedi