MySQL数据库表结构设计
第 1-9 条, 共 9 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
avgScore | decimal(5,2) | 是 | 无索引 | |||
totalScore | decimal(5,2) | 是 | 无索引 | |||
quizNum | int(11) | 0 | 否 | 无索引 | 0 | |
correctNum | int(11) | 0 | 否 | 无索引 | 0 | |
partialCorrectNum | int(11) | 0 | 否 | 无索引 | 0 | |
wrongNum | int(11) | 0 | 否 | 无索引 | 0 | |
userId | int(11) | 否 | 无索引 | |||
courseId | int(11) | 否 | 无索引 | |||
quizIds | char(255) | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:EW在线教育-课程报表:https://open.yesapi.cn/tablelist/yesapi_eduwind_ew_course_quiz_report.html
-- 数据库大全:EW在线教育-课程报表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_eduwind_ew_course_quiz_report` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`avgScore` decimal(5,2) NOT NULL COMMENT '',
`totalScore` decimal(5,2) NOT NULL COMMENT '',
`quizNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
`correctNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
`partialCorrectNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
`wrongNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
`userId` int(11) NOT NULL COMMENT '',
`courseId` int(11) NOT NULL COMMENT '',
`quizIds` char(255) NOT NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'EW在线教育-课程报表';
复制后,到数据库执行,即可创建此数据库表。