Hello Group!
Its been about 5 years since i have messed with SQL.
I'm creating a database for a simple .xls that will be searchable.
Here is a exmple row of data:
Make:ACURA
Model:INTEGRA
Year:1990
Engine: L4
Edition: GS
Trans Cooler: x=true
Oil Cooler:
Horse Power:0-400
Comments:
Part Number:9E-HE790-01
Tube Size:1.50"
Rows:1
Core Size:13.00 x 26.88
I have broken into the following tables: {}=colums in the table
Year:
{vehicle_year}
Make:
{vehicle_make}
Model:
{vehicle_model}
Vehicle_specs
{cooler_type}
{engine_size}
{horsepower}
{comments}
{tube_size}
{rows}
{core_size}
Product_id
{part_number}
{image_path}
{image_name}
Does this seem to be a solid way to design the tables? Also Some things have Changed since SQL2k... I have all but the Primary Key set to a (char) Data Type.
All Comments and criticism are welcomed!