我想知道您的程序员如何在 Mysql http://shop.ccs.com中处理这样一个电子商务网站,其中包含产品、产品质量、尺寸、颜色价格之间的所有相关性。我的是
- 餐桌用品
- ID
- 姓名
- 父母
- 桌子大小
- ID
- id_product
- 尺寸名称
- 数量
- 表格颜色
- ID
- id_product
- 颜色
- 数量
我想知道您的程序员如何在 Mysql http://shop.ccs.com中处理这样一个电子商务网站,其中包含产品、产品质量、尺寸、颜色价格之间的所有相关性。我的是
嗯..我想出了这个结构,希望能有所帮助。应该有一个包含产品信息的主表。在你的例子中,它的产品 ID、尺寸和颜色reec。其余表连接到主表
1.table products_id (master table)
1.id- Primary Key
2.id_product_size- References size.id (FK)
3.id_product_color- References color.id (FK)
2. table product_name
1.product_id- References product_id.id(FK)
2.name
3.parents
3.table size
1.id- Primary Key
2.size_name
3.quantity
4.table color
1.id- Primary Key
2.colors
3.quantity