MySQL数据库表结构设计
第 1-10 条, 共 10 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
attribute_id | bigint(20) | 否 | 属性ID | 无索引 | ||
product_id | bigint(20) | 是 | 商品ID | 无索引 | ||
stock | int(11) | 0 | 是 | 总库存 | 无索引 | 0 |
sales_volume | int(11) | 0 | 是 | 销售量 | 无索引 | 0 |
page_views | int(11) | 0 | 是 | 游览量 | 无索引 | 0 |
comment_number | int(11) | 0 | 是 | 评论数量 | 无索引 | 0 |
comment_total | int(11) | 0 | 是 | 累计评价 | 无索引 | 0 |
comment_average | decimal(10,0) | 0 | 是 | 平均评价 | 无索引 | 0 |
favorite_number | int(11) | 0 | 是 | 收藏数 | 无索引 | 0 |
question_number | int(11) | 是 | 提问数 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:公益商城-商品属性表:https://open.yesapi.cn/tablelist/yesapi_morning_os_product_attribute.html
-- 数据库大全:公益商城-商品属性表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_morning_os_product_attribute` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`attribute_id` bigint(20) NULL COMMENT '属性ID',
`product_id` bigint(20) NULL COMMENT '商品ID',
`stock` int(11) NULL DEFAULT '0' COMMENT '总库存',
`sales_volume` int(11) NULL DEFAULT '0' COMMENT '销售量',
`page_views` int(11) NULL DEFAULT '0' COMMENT '游览量',
`comment_number` int(11) NULL DEFAULT '0' COMMENT '评论数量',
`comment_total` int(11) NULL DEFAULT '0' COMMENT '累计评价',
`comment_average` decimal(10,0) NULL DEFAULT '0' COMMENT '平均评价',
`favorite_number` int(11) NULL DEFAULT '0' COMMENT '收藏数',
`question_number` int(11) NULL COMMENT '提问数',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '公益商城-商品属性表';
复制后,到数据库执行,即可创建此数据库表。