Hi there,
I am new to having to deal with any large databasing problems but here it is.
I am trying to make an inventory table for clothing (this will eventually be used for several programs) where each different colored item will be tracked by a different UPC (each color item will be a unique row or entry), but the sizes will be tracked via columns .
So here is the issue. I am currently writing it like this
prod_UPC|prod_size_s|prod_size_m|prod_size_l|prod_size_xl|prod_size_xxl|prod_size_1|prod_size_2|insert about 300 other sizes here|prod_total
on and on, but this will end up leaving me with a table with over 400 columns using MySQL, is this a bad thing? will it grind anything to a halt? is there a point where you just can't slap on another column?
Not sure how big these can get and still hold their speed, stability, and integrity.
should I just make a table for
ProdUPC | ProdSize | InStock
and a seperate table to store all the product size possibilities for individual product categories?
Any advice is appreciated.
~Malkavbug