I am creating a catalog database and would like some advice. In every catalog there could be many different product types (I am well aware of the one-to-many relationship). So in my catalog table I have a field for ProductID so that the two tables are linked. I was wondering if there is some way to store like five productID's in one record. For example, say I have a Honda catalog that contains info about chainsaws, lawnmowers, cars, and motorcycles, lets say with productID's 1,2,3,4 respectively. Could I store this the following way? Could I write code to store it the following way?
CatalogName CatalogDate ProductID Format Filed Under
Honda 2001 02/02/01 1,2,3,4 CD Honda
I know that four seperate records could be made to remedy this, but that would not be totally accurate of each catalog and would waste space. Thanks alot.
-Dan
CatalogName CatalogDate ProductID Format Filed Under
Honda 2001 02/02/01 1,2,3,4 CD Honda
I know that four seperate records could be made to remedy this, but that would not be totally accurate of each catalog and would waste space. Thanks alot.
-Dan