I'm designing a db that will hold financial profit and loss data. I'm
tracking products and their: gross units, marketing costs, sales
costs, etc. The question is, is it better to have one table for each
of these categories where each table represents a category AND year,
or just the category? Let me demonstrate:
Option 1
tblGrossUnits:
Product
Year
Month
GrossUnits
Option 2
tblFY02GrossUni ts
Product
Month
GrossUnits
(each year would need a new table)
Thanks for any help!
tracking products and their: gross units, marketing costs, sales
costs, etc. The question is, is it better to have one table for each
of these categories where each table represents a category AND year,
or just the category? Let me demonstrate:
Option 1
tblGrossUnits:
Product
Year
Month
GrossUnits
Option 2
tblFY02GrossUni ts
Product
Month
GrossUnits
(each year would need a new table)
Thanks for any help!
Comment