Hello Everyone,
I look at an automotive sales report each month that lists number of cars sold by brand. The hierarchy of this data is as such:
Parent company -> Make -> Type -> Model
One 'parent company' (ex. GM) will have many 'makes' (ex Buick, or Cadillac, or Chevrolet, etc). One 'make' has one of two 'types' (car or truck), and for each type there are several models (1 Series, 3 Series, etc).
Each month I would like to add the new sales data when the report is issued.
I am wondering if I should create a new table for each parent company, and in the table have fields 'Make', 'Type', 'Model' and 'Sales'. Is this the most logical and efficient way to structure this data?
Any suggestions are more than welcome. I appreciate the help in advance.