MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
booksId | int(11) | 否 | 小说id号 | 无索引 | ||
contentName | varchar(128) | 否 | 章节名称 | 无索引 | ||
contentNum | int(11) | 否 | 当前章节序号 | 无索引 | ||
contents | longtext | 否 | 章节内容 | 无索引 | ||
bookContentCheckup | int(1) | 0 | 否 | 审核,0未审核 | 无索引 | 0 |
draft | longtext | 否 | 草稿 | 无索引 | ||
lastUpdate | date | 否 | 最后更新时间 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:在线小说-小说内容:https://open.yesapi.cn/tablelist/yesapi_nor_bookcontents.html
-- 数据库大全:在线小说-小说内容
-- 来源:YesApi.cn
CREATE TABLE `yesapi_nor_bookcontents` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`booksId` int(11) NOT NULL COMMENT '小说id号',
`contentName` varchar(128) NOT NULL COMMENT '章节名称',
`contentNum` int(11) NOT NULL COMMENT '当前章节序号',
`contents` longtext NOT NULL COMMENT '章节内容',
`bookContentCheckup` int(1) NOT NULL DEFAULT '0' COMMENT '审核,0未审核',
`draft` longtext NOT NULL COMMENT '草稿',
`lastUpdate` date NOT NULL COMMENT '最后更新时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '在线小说-小说内容';
复制后,到数据库执行,即可创建此数据库表。