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

MySQL建表SQL语句

数据库结构:在线考试-考试:https://open.yesapi.cn/tablelist/yesapi_onlineexam_exam.html


-- 数据库大全:在线考试-考试
-- 来源:YesApi.cn
CREATE TABLE `yesapi_onlineexam_exam` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `title` varchar(255) NOT NULL COMMENT '',
    `timelimit` int(11) NOT NULL DEFAULT '60' COMMENT '',
    `endtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '',
    `yesapi_onlineexam_exam_status` varchar(10) NOT NULL COMMENT '',
    `points` int(11) NOT NULL COMMENT '',
    `singlepoints` int(11) NOT NULL COMMENT '',
    `multipoints` int(11) NOT NULL COMMENT '',
    `judgepoints` int(11) NOT NULL COMMENT '',
    `tid` varchar(255) NOT NULL COMMENT '',
    KEY `tid` (`tid`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '在线考试-考试';

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


MySQL数据库表结构设计

第 1-9 条, 共 9 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
titlevarchar(255)无索引
timelimitint(11)60无索引60
endtimetimestampCURRENT_TIMESTAMP无索引CURRENT_TIMESTAMP
yesapi_onlineexam_exam_statusvarchar(10)无索引
pointsint(11)无索引
singlepointsint(11)无索引
multipointsint(11)无索引
judgepointsint(11)无索引
tidvarchar(255)普通索引

猜你喜欢

MySQL数据库设计 在线考试-班级

MySQL数据库设计 在线考试-考试答案

MySQL数据库设计 在线考试-考试问题

MySQL数据库设计 在线考试-考试分类

MySQL数据库设计 在线考试-考试题目

MySQL数据库设计 在线考试-年级

MySQL数据库设计 在线考试-专业

MySQL数据库设计 在线考试-管理员

MySQL数据库设计 在线考试-题目

MySQL数据库设计 在线考试-学生

MySQL数据库设计 在线考试-老师

MySQL数据库设计 在线考试-老师班级



回到顶部 ↑