+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_studyabc_cet:/tablelist/okayapi_studyabc_cet.html


-- MySQL Table okayapi_studyabc_cet
-- From: OkayAPI.com
CREATE TABLE `okayapi_studyabc_cet` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `cettitle` varchar(255) NOT NULL COMMENT '',
    `cetdate` date NOT NULL COMMENT '',
    `idate` date NOT NULL COMMENT '',
    `suri` varchar(255) NOT NULL COMMENT '',
    `okayapi_studyabc_cet_type` int(1) NOT NULL DEFAULT '1' COMMENT '1=>cet4,2=>cet6',
    `has_desc` int(1) NOT NULL DEFAULT '0' COMMENT '1=>has,0=>dont',
    KEY `cettitle` (`cettitle`),
    KEY `cetdate` (`cetdate`),
    KEY `idate` (`idate`),
    KEY `suri` (`suri`),
    KEY `okayapi_studyabc_cet_type` (`okayapi_studyabc_cet_type`),
    KEY `has_desc` (`has_desc`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '学英语社区-英文等级';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-6 of 6 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
cettitlevarchar(255)
cetdatedate
idatedate
surivarchar(255)
okayapi_studyabc_cet_typeint(1)11=>cet4,2=>cet6Normal Index1
has_descint(1)01=>has,0=>dontNormal Index0

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_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

MySQL Table Design okayapi_eduwind_ew_cms_people

TOP ↑