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

MySQL建表SQL语句

数据库结构:儿童学习-作业:https://open.yesapi.cn/tablelist/yesapi_futurestar_homework.html


-- 数据库大全:儿童学习-作业
-- 来源:YesApi.cn
CREATE TABLE `yesapi_futurestar_homework` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `homeworkid` int(11) NULL COMMENT '',
    `teacher_id` int(11) NULL COMMENT '',
    `student_id` int(11) NULL COMMENT '',
    `title` text NULL COMMENT '',
    `starttime` datetime NULL COMMENT '作业开始时间',
    `yesapi_futurestar_homework_subject` char(100) NULL COMMENT '课程名',
    `endtime` datetime NULL COMMENT '作业结束时间',
    `detail` text NULL COMMENT '课程描述',
    `subjectid` int(11) NULL COMMENT '课程id',
    `path` varchar(255) NULL COMMENT '',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '儿童学习-作业';

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


MySQL数据库表结构设计

第 1-10 条, 共 10 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
homeworkidint(11)无索引
teacher_idint(11)无索引
student_idint(11)无索引
titletext无索引
starttimedatetime作业开始时间无索引
yesapi_futurestar_homework_subjectchar(100)课程名无索引
endtimedatetime作业结束时间无索引
detailtext课程描述无索引
subjectidint(11)课程id无索引
pathvarchar(255)无索引

猜你喜欢

MySQL数据库设计 儿童学习-管理员

MySQL数据库设计 儿童学习-城市

MySQL数据库设计 儿童学习-班级

MySQL数据库设计 儿童学习-班级空间

MySQL数据库设计 儿童学习-家长通知

MySQL数据库设计 儿童学习-个人空间

MySQL数据库设计 儿童学习-省份

MySQL数据库设计 儿童学习-资源

MySQL数据库设计 儿童学习-学校

MySQL数据库设计 儿童学习-学生

MySQL数据库设计 儿童学习-课程

MySQL数据库设计 儿童学习-教师

MySQL数据库设计 儿童益智答题-题目

MySQL数据库设计 儿童益智答题-题目类型

MySQL数据库设计 儿童益智答题-用户



回到顶部 ↑