MySQL数据库表结构设计
第 1-5 条, 共 5 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
uid | int(11) | 是 | 评论者id | 无索引 | ||
goods_id | int(11) | 是 | 评论商品id | 无索引 | ||
yesapi_zhiguo_ocenter_goods_comment_comment | text | 是 | 评论信息 | 无索引 | ||
create_time | int(11) | 是 | 评论时间 | 无索引 | ||
yesapi_zhiguo_ocenter_goods_comment_status | int(11) | 1 | 是 | 评论状态 | 无索引 | 1 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:智果内容付费-商品评论:https://open.yesapi.cn/tablelist/yesapi_zhiguo_ocenter_goods_comment.html
-- 数据库大全:智果内容付费-商品评论
-- 来源:YesApi.cn
CREATE TABLE `yesapi_zhiguo_ocenter_goods_comment` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(11) NULL COMMENT '评论者id',
`goods_id` int(11) NULL COMMENT '评论商品id',
`yesapi_zhiguo_ocenter_goods_comment_comment` text NULL COMMENT '评论信息',
`create_time` int(11) NULL COMMENT '评论时间',
`yesapi_zhiguo_ocenter_goods_comment_status` int(11) NULL DEFAULT '1' COMMENT '评论状态',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '智果内容付费-商品评论';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 智果内容付费-权限组与分类的对应关系表