I have a Products table that I am about to add 5000
products to. But before I do, I want to make sure I
have all fields I might need.
If anyone has any suggestions on what I have now or
can think of anything I should add, please let me know.
Products table:
ProductID
CategoryID
SupplierID
ProductNumber
Name 50
Description 200
Price
ImagePath 50
ThumbImagePath 50
Engraving (bit field)
Some products have engraving available. Should I include
a field that should be checked for this each time the
products are read from the database?
Also, would it be a good idea to add a SalesPrice field
that I could later use as a calculated column for a sale?
My main concern is that I don't want to add too many fields
and hurt the performance of the database.
I don't need inventory data because I don't have inventory!
Thanks
products to. But before I do, I want to make sure I
have all fields I might need.
If anyone has any suggestions on what I have now or
can think of anything I should add, please let me know.
Products table:
ProductID
CategoryID
SupplierID
ProductNumber
Name 50
Description 200
Price
ImagePath 50
ThumbImagePath 50
Engraving (bit field)
Some products have engraving available. Should I include
a field that should be checked for this each time the
products are read from the database?
Also, would it be a good idea to add a SalesPrice field
that I could later use as a calculated column for a sale?
My main concern is that I don't want to add too many fields
and hurt the performance of the database.
I don't need inventory data because I don't have inventory!
Thanks