MySQL Create Table SQL
Table Structure: okayapi_eduwind_ew_lesson_learn:/tablelist/okayapi_eduwind_ew_lesson_learn.html
-- MySQL Table okayapi_eduwind_ew_lesson_learn
-- From: OkayAPI.com
CREATE TABLE `okayapi_eduwind_ew_lesson_learn` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`lessonId` int(11) NOT NULL COMMENT '',
`userId` int(11) NOT NULL COMMENT '',
`startTime` int(11) NOT NULL DEFAULT '0' COMMENT '',
`finishTime` int(11) NOT NULL DEFAULT '0' COMMENT '',
`okayapi_eduwind_ew_lesson_learn_status` int(4) NOT NULL DEFAULT '0' COMMENT '',
KEY `lessonId` (`lessonId`),
KEY `userId` (`userId`),
KEY `startTime` (`startTime`),
KEY `finishTime` (`finishTime`),
KEY `okayapi_eduwind_ew_lesson_learn_status` (`okayapi_eduwind_ew_lesson_learn_status`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'EW在线教育-课程学习';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-5 of 5 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
lessonId | int(11) | 否 | ||||
userId | int(11) | 否 | ||||
startTime | int(11) | 0 | 否 | 0 | ||
finishTime | int(11) | 0 | 否 | 0 | ||
okayapi_eduwind_ew_lesson_learn_status | int(4) | 0 | 否 | 0 |