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