Hello everyone,
Suppose on a form I allow a user to pick a particular product type. After the user picks the product type a combo box is enabled which lists manufacturers who make that particular product type. The user then selects a manufacturer. A manufacturer can make many different product types. So the data looks something like this:
ProductType1:
Manufacturer1
Manufacturer2
Product Type 2:
Manufacturer1
Manufacturer3
'
'
'
(etc)
My question is how I should represent this information in a table.
Would it be like this?
Manufacturer ProductType
Manufacturer1 ProductType1
Manufacturer1 ProductType2
Manufacturer2 ProductType1
Manufacturer2 ProductType3
'
'
'
(etc)
In other words, should I list a new record for each product type each manufacturer produces? Just wanted to make sure I structure my table properly.
Thanks for the help,
Collen
Suppose on a form I allow a user to pick a particular product type. After the user picks the product type a combo box is enabled which lists manufacturers who make that particular product type. The user then selects a manufacturer. A manufacturer can make many different product types. So the data looks something like this:
ProductType1:
Manufacturer1
Manufacturer2
Product Type 2:
Manufacturer1
Manufacturer3
'
'
'
(etc)
My question is how I should represent this information in a table.
Would it be like this?
Manufacturer ProductType
Manufacturer1 ProductType1
Manufacturer1 ProductType2
Manufacturer2 ProductType1
Manufacturer2 ProductType3
'
'
'
(etc)
In other words, should I list a new record for each product type each manufacturer produces? Just wanted to make sure I structure my table properly.
Thanks for the help,
Collen