I have a Product and each product would have an unknown amount of keywords related to the product.
Should I make another table 'Keywords' and associate each keyword to a product Code
Table(field1,field2, etc...)
Or is there a better way,
any suggestions,
Brawn
"My mind is my Shrine,
and my body the Temple around it."
-The difference between genius and stupidity is that genius has its limits-
Should I make another table 'Keywords' and associate each keyword to a product Code
Table(field1,field2, etc...)
Code:
Products(code,name,description, ...)
Keywords(productCode,keyword)
any suggestions,
Brawn
"My mind is my Shrine,
and my body the Temple around it."
-The difference between genius and stupidity is that genius has its limits-