MySQL数据库表结构设计
第 1-6 条, 共 6 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
comment_goods_id | int(10) | 是 | 商品编号 | 无索引 | ||
comment_goods | varchar(255) | 是 | 商品名称 | 无索引 | ||
comment_time | timestamp | CURRENT_TIMESTAMP | 否 | 评价时间 | 无索引 | CURRENT_TIMESTAMP |
comment_buyer | varchar(50) | 是 | 购买人 | 无索引 | ||
comment_desc | text | 是 | 评价内容 | 无索引 | ||
comment_rank | int(4) | 是 | 评价等级,0表示非常差,1表示差,2表示一般,3表示好,4表示非常好 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:商品评价:https://open.yesapi.cn/tablelist/okayapi_goods_comment.html
-- 数据库大全:商品评价
-- 来源:YesApi.cn
CREATE TABLE `okayapi_goods_comment` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_goods_id` int(10) NULL COMMENT '商品编号',
`comment_goods` varchar(255) NULL COMMENT '商品名称',
`comment_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '评价时间',
`comment_buyer` varchar(50) NULL COMMENT '购买人',
`comment_desc` text NULL COMMENT '评价内容',
`comment_rank` int(4) NULL COMMENT '评价等级,0表示非常差,1表示差,2表示一般,3表示好,4表示非常好',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '商品评价';
复制后,到数据库执行,即可创建此数据库表。