+ 立即免费创建此表 返回数据库大全

MySQL建表SQL语句

数据库结构:在线小说-小说:https://open.yesapi.cn/tablelist/yesapi_nor_books.html


-- 数据库大全:在线小说-小说
-- 来源:YesApi.cn
CREATE TABLE `yesapi_nor_books` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `bookTitle` varchar(128) NOT NULL COMMENT '',
    `bookDescribe` varchar(512) NOT NULL COMMENT '',
    `maxContentId` int(11) NOT NULL COMMENT '最大章节序号',
    `bookClassId` int(11) NOT NULL COMMENT '',
    `bookType` int(1) NOT NULL DEFAULT '0' COMMENT '',
    `bookCheckup` int(1) NOT NULL DEFAULT '0' COMMENT '0为未通过审核,',
    `bookAuthorId` bigint(20) NOT NULL COMMENT '作者ID',
    `authorName` varchar(20) NOT NULL COMMENT '作者姓名',
    `addTime` date NOT NULL COMMENT '',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '在线小说-小说';

复制后,到数据库执行,即可创建此数据库表。


MySQL数据库表结构设计

第 1-9 条, 共 9 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
bookTitlevarchar(128)无索引
bookDescribevarchar(512)无索引
maxContentIdint(11)最大章节序号无索引
bookClassIdint(11)无索引
bookTypeint(1)0无索引0
bookCheckupint(1)00为未通过审核,无索引0
bookAuthorIdbigint(20)作者ID无索引
authorNamevarchar(20)作者姓名无索引
addTimedate无索引

猜你喜欢

MySQL数据库设计 xiaoshuo小说-作者

MySQL数据库设计 xiaoshuo小说-顶部

MySQL数据库设计 xiaoshuo小说-小说

MySQL数据库设计 xiaoshuo小说-分类

MySQL数据库设计 xiaoshuo小说-章节

MySQL数据库设计 xiaoshuo小说-标签

MySQL数据库设计 xiaoshuo小说-管理员

MySQL数据库设计 xiaoshuo小说-友情链接

MySQL数据库设计 jieqi小说-管理菜单

MySQL数据库设计 jieqi小说-章节配置

MySQL数据库设计 jieqi小说-章节

MySQL数据库设计 jieqi小说-配置

MySQL数据库设计 jieqi小说-默认菜单

MySQL数据库设计 jieqi小说-好友

MySQL数据库设计 jieqi小说-分组

MySQL数据库设计 jieqi小说-声望

MySQL数据库设计 jieqi小说-日志

MySQL数据库设计 jieqi小说-主菜单

MySQL数据库设计 jieqi小说-m章节

MySQL数据库设计 jieqi小说-私信



回到顶部 ↑