Multiple subtables

E

Ernst Guckel

Hello,

Not sure how to approach this:

We have an inventory database that has a variety of item types.
Workstations and printers have quite a difference of data fields to be
recorded. Should we store all items in one table and just not use the fields
that do not pertain to those types or should we have a parent table with the
shared fields and multiple subtables to store the specific fields to each
type?

The second sounds like a better idea but couldnt things go wrong later with
multiple tables linking to the same parent table?

Thanks,
Ernst.
 
K

KARL DEWEY

Do an analysis on which fields to include in the main table based on how many
times a given field would be used or not.
I think using one other table instead of multiple subtables to store the
specific fields to each type having these fields --
tblSubInfo --
SubInfoID - primary key
InventoryID - foreign key
DataType -
Data -

DataType tells you what the data is (serial, price, color, etc.).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top