MySQL Create Table SQL
Table Structure: okayapi_eduwind_ew_quiz:/tablelist/okayapi_eduwind_ew_quiz.html
-- MySQL Table okayapi_eduwind_ew_quiz
-- From: OkayAPI.com
CREATE TABLE `okayapi_eduwind_ew_quiz` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` char(255) NOT NULL COMMENT '',
`description` text NOT NULL COMMENT '',
`reportNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
`questionNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
KEY `title` (`title`),
KEY `description` (`description`),
KEY `reportNum` (`reportNum`),
KEY `questionNum` (`questionNum`),
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-4 of 4 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
title | char(255) | 否 | ||||
description | text | 是 | ||||
reportNum | int(11) | 0 | 否 | 0 | ||
questionNum | int(11) | 0 | 否 | 0 |