MySQL数据库表结构设计
第 1-6 条, 共 6 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
article_id | bigint(20) | 否 | 答案id | 无索引 | ||
count_digg | int(11) | 0 | 是 | 赞同数量 | 无索引 | 0 |
count_burys | int(11) | 0 | 是 | 踩数量 | 无索引 | 0 |
count_comment | int(11) | 0 | 是 | 评论数量 | 无索引 | 0 |
count_view | int(11) | 0 | 是 | 访问次数 | 无索引 | 0 |
weight | double(11,2) | 0.00 | 是 | 文章权重 | 无索引 | 0.00 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:知识问答社区-文章数量:https://open.yesapi.cn/tablelist/yesapi_fly_article_count.html
-- 数据库大全:知识问答社区-文章数量
-- 来源:YesApi.cn
CREATE TABLE `yesapi_fly_article_count` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`article_id` bigint(20) NULL COMMENT '答案id',
`count_digg` int(11) NULL DEFAULT '0' COMMENT '赞同数量',
`count_burys` int(11) NULL DEFAULT '0' COMMENT '踩数量',
`count_comment` int(11) NULL DEFAULT '0' COMMENT '评论数量',
`count_view` int(11) NULL DEFAULT '0' COMMENT '访问次数',
`weight` double(11,2) NULL DEFAULT '0.00' COMMENT '文章权重',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '知识问答社区-文章数量';
复制后,到数据库执行,即可创建此数据库表。