MySQL数据库表结构设计
第 1-10 条, 共 10 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
doingid | bigint(20) | 否 | 无索引 | |||
authorid | int(10) | 0 | 否 | 普通索引 | 0 | |
author | varchar(20) | 否 | 无索引 | |||
yesapi_whatsns_doing_action | tinyint(1) | 0 | 否 | 无索引 | 0 | |
questionid | int(10) | 0 | 否 | 普通索引 | 0 | |
content | text | 是 | 无索引 | |||
referid | int(10) | 0 | 否 | 普通索引 | 0 | |
refer_authorid | int(10) | 0 | 否 | 无索引 | 0 | |
refer_content | tinytext | 是 | 无索引 | |||
createtime | int(10) | 0 | 否 | 普通索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:问答社区-doing:https://open.yesapi.cn/tablelist/yesapi_whatsns_doing.html
-- 数据库大全:问答社区-doing
-- 来源:YesApi.cn
CREATE TABLE `yesapi_whatsns_doing` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`doingid` bigint(20) NOT NULL COMMENT '',
`authorid` int(10) NOT NULL DEFAULT '0' COMMENT '',
`author` varchar(20) NOT NULL COMMENT '',
`yesapi_whatsns_doing_action` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
`questionid` int(10) NOT NULL DEFAULT '0' COMMENT '',
`content` text NOT NULL COMMENT '',
`referid` int(10) NOT NULL DEFAULT '0' COMMENT '',
`refer_authorid` int(10) NOT NULL DEFAULT '0' COMMENT '',
`refer_content` tinytext NOT NULL COMMENT '',
`createtime` int(10) NOT NULL DEFAULT '0' COMMENT '',
KEY `authorid` (`authorid`),
KEY `questionid` (`questionid`),
KEY `referid` (`referid`),
KEY `createtime` (`createtime`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '问答社区-doing';
复制后,到数据库执行,即可创建此数据库表。