MySQL Create Table SQL
Table Structure: okayapi_studyabc_articles_content:/tablelist/okayapi_studyabc_articles_content.html
-- MySQL Table okayapi_studyabc_articles_content
-- From: OkayAPI.com
CREATE TABLE `okayapi_studyabc_articles_content` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`fid` int(10) NOT NULL COMMENT '',
`englishjson` text NOT NULL COMMENT '',
`chinesejson` text NOT NULL COMMENT '',
`idate` date NOT NULL COMMENT '',
KEY `fid` (`fid`),
KEY `englishjson` (`englishjson`),
KEY `chinesejson` (`chinesejson`),
KEY `idate` (`idate`),
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-4 of 4 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
fid | int(10) | 否 | Normal Index | |||
englishjson | text | 否 | ||||
chinesejson | text | 否 | ||||
idate | date | 否 |