MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
tid | int(10) | 0 | 否 | 无索引 | 0 | |
authorid | int(10) | 0 | 否 | 无索引 | 0 | |
author | char(18) | 否 | 无索引 | |||
content | text | 否 | 评论回复内容 | 无索引 | ||
yesapi_whatsns_article_comment_time | int(10) | 0 | 否 | 无索引 | 0 | |
aid | int(11) | 是 | 文章评论id | 无索引 | ||
state | int(5) | 1 | 是 | 普通索引 | 1 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:问答社区-文章评论:https://open.yesapi.cn/tablelist/yesapi_whatsns_article_comment.html
-- 数据库大全:问答社区-文章评论
-- 来源:YesApi.cn
CREATE TABLE `yesapi_whatsns_article_comment` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`tid` int(10) NULL DEFAULT '0' COMMENT '',
`authorid` int(10) NULL DEFAULT '0' COMMENT '',
`author` char(18) NULL COMMENT '',
`content` text NULL COMMENT '评论回复内容',
`yesapi_whatsns_article_comment_time` int(10) NULL DEFAULT '0' COMMENT '',
`aid` int(11) NULL COMMENT '文章评论id',
`state` int(5) NULL DEFAULT '1' COMMENT '',
KEY `state` (`state`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '问答社区-文章评论';
复制后,到数据库执行,即可创建此数据库表。