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...)
Products(code,name,description, ...)
Keywords(productCode,keyword)
Or is there a...