M
miss031
I'm not sure what would be the proper normalized format for this:
I am storing vehicles to be sold; I have a table that stores the vehicle
ID(PK), year, make, model, serialnumber, price, owner ID (FK from owners
table), status ID (FK to status table), addtl info ID (FK to addtl info
table).
The question is, in the addtl info table, I store the options of the car
(Air, tilt, cruise, etc.). These are check boxes. Is there a more normalized
way to store these than having this: car #1: air Y, tilt N, Cruise N, P/Win
Y....etc.? Should I have a table for options, and a multi-seelect in the
form? How would that store?
Also, I want to store a link to a photo of each car. Should I put that in a
new table, the main table, or the addtl info table?
I am storing vehicles to be sold; I have a table that stores the vehicle
ID(PK), year, make, model, serialnumber, price, owner ID (FK from owners
table), status ID (FK to status table), addtl info ID (FK to addtl info
table).
The question is, in the addtl info table, I store the options of the car
(Air, tilt, cruise, etc.). These are check boxes. Is there a more normalized
way to store these than having this: car #1: air Y, tilt N, Cruise N, P/Win
Y....etc.? Should I have a table for options, and a multi-seelect in the
form? How would that store?
Also, I want to store a link to a photo of each car. Should I put that in a
new table, the main table, or the addtl info table?