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