Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含类别 ID、名称和父级的类别表。我有一个产品表,其中包含一个指向名为 的类别表的链接 cat_id。
cat_id
现在我有不同种类的产品,并不是每个产品都具有相同的属性,如颜色或件数。所以我的问题是:如何设置每个类别可以有不同的属性?
我被困在如何最好地链接它。现在我在产品表中有一个包含所有属性的列,还有每个类别未使用的属性。
制作属性类别表:
attcat_id attcat_name
attcat_id
attcat_name
制作属性表:
att_id attcat_id(外键)att_name
att_id
att_name
这样这两个将被链接
现在在类别表中将每个类别与属性类别相关联
cat_id cat_name attcat_id(外键)
cat_name
所以想法是根据属性类别对属性进行分组,并将属性类别链接到产品类别。例如,属性类别mobile的属性为price screensize camera flashlight。
mobile
price
screensize
camera
flashlight
现在将mobileie 属性类别链接到您的产品类别Mobiles。
Mobiles