MySQL数据库表结构设计
第 1-11 条, 共 11 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
questionId | int(11) | 否 | 无索引 | |||
memberNum | int(11) | 0 | 否 | 无索引 | 0 | |
partialCorrectRate | decimal(5,4) | 0.0000 | 是 | 无索引 | 0.0000 | |
wrongRate | decimal(5,4) | 0.0000 | 是 | 无索引 | 0.0000 | |
correctRate | decimal(5,4) | 0.0000 | 是 | 无索引 | 0.0000 | |
aNum | int(11) | 0 | 否 | 无索引 | 0 | |
bNum | int(11) | 0 | 否 | 无索引 | 0 | |
cNum | int(11) | 0 | 否 | 无索引 | 0 | |
dNum | int(11) | 0 | 否 | 无索引 | 0 | |
yesapi_eduwind_ew_question_report_eNum | int(11) | 0 | 否 | 无索引 | 0 | |
fNum | int(11) | 0 | 否 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:EW在线教育-题目报告:https://open.yesapi.cn/tablelist/yesapi_eduwind_ew_question_report.html
-- 数据库大全:EW在线教育-题目报告
-- 来源:YesApi.cn
CREATE TABLE `yesapi_eduwind_ew_question_report` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`questionId` int(11) NOT NULL COMMENT '',
`memberNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
`partialCorrectRate` decimal(5,4) NOT NULL DEFAULT '0.0000' COMMENT '',
`wrongRate` decimal(5,4) NOT NULL DEFAULT '0.0000' COMMENT '',
`correctRate` decimal(5,4) NOT NULL DEFAULT '0.0000' COMMENT '',
`aNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
`bNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
`cNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
`dNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
`yesapi_eduwind_ew_question_report_eNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
`fNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'EW在线教育-题目报告';
复制后,到数据库执行,即可创建此数据库表。