MySQL Create Table SQL
Table Structure: okayapi_lvyou_jee_seo:/tablelist/okayapi_lvyou_jee_seo.html
-- MySQL Table okayapi_lvyou_jee_seo
-- From: OkayAPI.com
CREATE TABLE `okayapi_lvyou_jee_seo` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`relate_id` int(11) NULL COMMENT '',
`relate_table` varchar(50) NULL COMMENT '',
`seo_title` varchar(200) NULL COMMENT '',
`seo_keywords` varchar(255) NULL COMMENT '',
`seo_description` varchar(255) NULL COMMENT '',
KEY `relate_id` (`relate_id`),
KEY `relate_table` (`relate_table`),
KEY `seo_title` (`seo_title`),
KEY `seo_keywords` (`seo_keywords`),
KEY `seo_description` (`seo_description`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'lvyou旅游-seo表';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-5 of 5 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
relate_id | int(11) | 是 | ||||
relate_table | varchar(50) | 是 | ||||
seo_title | varchar(200) | 是 | ||||
seo_keywords | varchar(255) | 是 | ||||
seo_description | varchar(255) | 是 |