MySQL Create Table SQL
Table Structure: okayapi_eduwind_ew_question_choice:/tablelist/okayapi_eduwind_ew_question_choice.html
-- MySQL Table okayapi_eduwind_ew_question_choice
-- From: OkayAPI.com
CREATE TABLE `okayapi_eduwind_ew_question_choice` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`questionId` int(11) NULL COMMENT '',
`isCorrect` tinyint(1) NULL DEFAULT '0' COMMENT '',
`content` text NULL COMMENT '',
KEY `questionId` (`questionId`),
KEY `isCorrect` (`isCorrect`),
KEY `content` (`content`),
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-3 of 3 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
questionId | int(11) | 否 | ||||
isCorrect | tinyint(1) | 0 | 否 | 0 | ||
content | text | 是 |