MySQL Create Table SQL
Table Structure: okayapi_eduwind_ew_course_log:/tablelist/okayapi_eduwind_ew_course_log.html
-- MySQL Table okayapi_eduwind_ew_course_log
-- From: OkayAPI.com
CREATE TABLE `okayapi_eduwind_ew_course_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`courseId` int(11) NOT NULL COMMENT '',
`logId` int(11) NOT NULL COMMENT '',
KEY `courseId` (`courseId`),
KEY `logId` (`logId`),
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-2 of 2 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
courseId | int(11) | 否 | ||||
logId | int(11) | 否 |