MySQL数据库表结构设计
第 1-4 条, 共 4 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
chapter_name | varchar(255) | 否 | 普通索引 | |||
create_time | int(11) | 0 | 是 | 无索引 | 0 | |
book_id | int(10) | 否 | 普通索引 | |||
chapter_order | decimal(10,2) | 否 | 普通索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:xiaoshuo小说-章节:https://open.yesapi.cn/tablelist/yesapi_xwx_chapter.html
-- 数据库大全:xiaoshuo小说-章节
-- 来源:YesApi.cn
CREATE TABLE `yesapi_xwx_chapter` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`chapter_name` varchar(255) NOT NULL COMMENT '',
`create_time` int(11) NOT NULL DEFAULT '0' COMMENT '',
`book_id` int(10) NOT NULL COMMENT '',
`chapter_order` decimal(10,2) NOT NULL COMMENT '',
KEY `chapter_name` (`chapter_name`),
KEY `book_id` (`book_id`),
KEY `chapter_order` (`chapter_order`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'xiaoshuo小说-章节';
复制后,到数据库执行,即可创建此数据库表。