MySQL数据库表结构设计
第 1-14 条, 共 14 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
question_content | varchar(255) | 否 | 问题内容 | 无索引 | ||
question_detail | text | 是 | 问题说明 | 无索引 | ||
published_uid | int(11) | 是 | 发布用户UID | 无索引 | ||
answer_count | int(11) | 0 | 否 | 回答计数 | 无索引 | 0 |
answer_users | int(11) | 0 | 否 | 回答人数 | 无索引 | 0 |
view_count | int(11) | 0 | 否 | 浏览次数 | 无索引 | 0 |
focus_count | int(11) | 0 | 否 | 关注数 | 无索引 | 0 |
comment_count | int(11) | 0 | 否 | 评论数 | 无索引 | 0 |
category_id | int(11) | 0 | 否 | 分类 ID | 无索引 | 0 |
agree_count | int(11) | 0 | 否 | 回复赞同数总和 | 无索引 | 0 |
against_count | int(11) | 0 | 否 | 回复反对数总和 | 无索引 | 0 |
yesapi_question_lock | tinyint(1) | 0 | 否 | 是否锁定 | 无索引 | 0 |
anonymous | tinyint(1) | 0 | 否 | 无索引 | 0 | |
thanks_count | int(10) | 0 | 否 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:问题列表:https://open.yesapi.cn/tablelist/yesapi_question.html
-- 数据库大全:问题列表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_question` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`question_content` varchar(255) NOT NULL COMMENT '问题内容',
`question_detail` text NOT NULL COMMENT '问题说明',
`published_uid` int(11) NOT NULL COMMENT '发布用户UID',
`answer_count` int(11) NOT NULL DEFAULT '0' COMMENT '回答计数',
`answer_users` int(11) NOT NULL DEFAULT '0' COMMENT '回答人数',
`view_count` int(11) NOT NULL DEFAULT '0' COMMENT '浏览次数',
`focus_count` int(11) NOT NULL DEFAULT '0' COMMENT '关注数',
`comment_count` int(11) NOT NULL DEFAULT '0' COMMENT '评论数',
`category_id` int(11) NOT NULL DEFAULT '0' COMMENT '分类 ID',
`agree_count` int(11) NOT NULL DEFAULT '0' COMMENT '回复赞同数总和',
`against_count` int(11) NOT NULL DEFAULT '0' COMMENT '回复反对数总和',
`yesapi_question_lock` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否锁定',
`anonymous` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`thanks_count` int(10) NOT NULL DEFAULT '0' COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '问题列表';
复制后,到数据库执行,即可创建此数据库表。