MySQL数据库表结构设计
第 1-15 条, 共 15 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
siteid | smallint(6) | 0 | 否 | 无索引 | 0 | |
reporttime | int(11) | 0 | 否 | 无索引 | 0 | |
reportuid | int(11) | 0 | 否 | 无索引 | 0 | |
reportname | varchar(30) | 否 | 普通索引 | |||
authtime | int(11) | 0 | 否 | 无索引 | 0 | |
authuid | int(11) | 0 | 否 | 无索引 | 0 | |
authname | varchar(30) | 否 | 普通索引 | |||
reporttitle | varchar(100) | 否 | 无索引 | |||
reporttext | mediumtext | 否 | 无索引 | |||
reportsize | int(11) | 0 | 否 | 无索引 | 0 | |
reportfield | varchar(250) | 否 | 无索引 | |||
authnote | text | 否 | 无索引 | |||
reportsort | smallint(6) | 0 | 否 | 普通索引 | 0 | |
reporttype | smallint(6) | 0 | 否 | 普通索引 | 0 | |
authflag | tinyint(3) | 0 | 否 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:jieqi小说-报告:https://open.yesapi.cn/tablelist/yesapi_jieqi_system_report.html
-- 数据库大全:jieqi小说-报告
-- 来源:YesApi.cn
CREATE TABLE `yesapi_jieqi_system_report` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`siteid` smallint(6) NOT NULL DEFAULT '0' COMMENT '',
`reporttime` int(11) NOT NULL DEFAULT '0' COMMENT '',
`reportuid` int(11) NOT NULL DEFAULT '0' COMMENT '',
`reportname` varchar(30) NOT NULL COMMENT '',
`authtime` int(11) NOT NULL DEFAULT '0' COMMENT '',
`authuid` int(11) NOT NULL DEFAULT '0' COMMENT '',
`authname` varchar(30) NOT NULL COMMENT '',
`reporttitle` varchar(100) NOT NULL COMMENT '',
`reporttext` mediumtext NOT NULL COMMENT '',
`reportsize` int(11) NOT NULL DEFAULT '0' COMMENT '',
`reportfield` varchar(250) NOT NULL COMMENT '',
`authnote` text NOT NULL COMMENT '',
`reportsort` smallint(6) NOT NULL DEFAULT '0' COMMENT '',
`reporttype` smallint(6) NOT NULL DEFAULT '0' COMMENT '',
`authflag` tinyint(3) NOT NULL DEFAULT '0' COMMENT '',
KEY `reportname` (`reportname`),
KEY `authname` (`authname`),
KEY `reportsort` (`reportsort`),
KEY `reporttype` (`reporttype`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'jieqi小说-报告';
复制后,到数据库执行,即可创建此数据库表。