MySQL Create Table SQL
Table Structure: okayapi_lvyou_jee_industry_background:/tablelist/okayapi_lvyou_jee_industry_background.html
-- MySQL Table okayapi_lvyou_jee_industry_background
-- From: OkayAPI.com
CREATE TABLE `okayapi_lvyou_jee_industry_background` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`parent_industry` int(11) NULL COMMENT '所属行业',
`okayapi_lvyou_jee_industry_background_status` int(11) NULL DEFAULT '1' COMMENT '记录状态',
`industry` varchar(64) NULL COMMENT '行业名',
KEY `parent_industry` (`parent_industry`),
KEY `okayapi_lvyou_jee_industry_background_status` (`okayapi_lvyou_jee_industry_background_status`),
KEY `industry` (`industry`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'lvyou旅游-行业';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-3 of 3 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
parent_industry | int(11) | 是 | 所属行业 | |||
okayapi_lvyou_jee_industry_background_status | int(11) | 1 | 是 | 记录状态 | 1 | |
industry | varchar(64) | 是 | 行业名 |