+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_eduwind_ew_quiz_report:/tablelist/okayapi_eduwind_ew_quiz_report.html


-- MySQL Table okayapi_eduwind_ew_quiz_report
-- From: OkayAPI.com
CREATE TABLE `okayapi_eduwind_ew_quiz_report` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `quizId` int(11) NOT NULL COMMENT '',
    `userId` int(11) NOT NULL COMMENT '',
    `score` decimal(7,2) NOT NULL DEFAULT '0.00' COMMENT '得分',
    `correctNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
    `wrongNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
    `partialCorrectNum` int(11) NOT NULL DEFAULT '0' COMMENT '',
    `teacherRemark` text NOT NULL COMMENT '',
    `remarkTime` int(11) NOT NULL DEFAULT '0' COMMENT '',
    `addTime` int(11) NOT NULL DEFAULT '0' COMMENT '',
    KEY `quizId` (`quizId`),
    KEY `userId` (`userId`),
    KEY `score` (`score`),
    KEY `correctNum` (`correctNum`),
    KEY `wrongNum` (`wrongNum`),
    KEY `partialCorrectNum` (`partialCorrectNum`),
    KEY `teacherRemark` (`teacherRemark`),
    KEY `remarkTime` (`remarkTime`),
    KEY `addTime` (`addTime`),
    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-9 of 9 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
quizIdint(11)
userIdint(11)
scoredecimal(7,2)0.00得分0.00
correctNumint(11)00
wrongNumint(11)00
partialCorrectNumint(11)00
teacherRemarktext
remarkTimeint(11)00
addTimeint(11)00

Guess You Like

MySQL Table Design okayapi_course_apply

MySQL Table Design okayapi_studyabc_articles

MySQL Table Design okayapi_studyabc_articles_content

MySQL Table Design okayapi_studyabc_cet

MySQL Table Design okayapi_studyabc_cetdesc

MySQL Table Design okayapi_studyabc_tinyenglish

MySQL Table Design okayapi_eduwind_AuthAssignment

MySQL Table Design okayapi_eduwind_AuthItem

MySQL Table Design okayapi_eduwind_AuthItemChild

MySQL Table Design okayapi_eduwind_Rights

MySQL Table Design okayapi_eduwind_YiiSession

MySQL Table Design okayapi_eduwind_ew_announcement

MySQL Table Design okayapi_eduwind_ew_answer

MySQL Table Design okayapi_eduwind_ew_area

MySQL Table Design okayapi_eduwind_ew_article

MySQL Table Design okayapi_eduwind_ew_bottom_text

MySQL Table Design okayapi_eduwind_ew_carousel

MySQL Table Design okayapi_eduwind_ew_category

MySQL Table Design okayapi_eduwind_ew_chapter

MySQL Table Design okayapi_eduwind_ew_city

TOP ↑