I am wondering if this makes sense.
I have several tables.
manufacturer
manufacturerid
manufacturername
model
modelid
deviceid
modelname
device
deviceid
devicename
capacity
capacityid
capacityname
speed
speedid
speedname
harddrive
harddriveid
manufacturerid
modelid
capacityid
speedid
My question is does it make sense to create the last table? The harddriveid will be inserted into another table inventory with a prim key call machid. Deviceid will be used to filter manufacturername using javascript in a drop-down menu after the manufacturer has been selected.
Is there a better way to do this?