+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_lvyou_jee_area:/tablelist/okayapi_lvyou_jee_area.html


-- MySQL Table okayapi_lvyou_jee_area
-- From: OkayAPI.com
CREATE TABLE `okayapi_lvyou_jee_area` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `pid` int(11) NULL COMMENT '',
    `paths` varchar(100) NULL COMMENT '',
    `levels` int(11) NULL COMMENT '',
    `sort` int(11) NULL COMMENT '',
    `okayapi_lvyou_jee_area_names` varchar(100) NULL COMMENT '',
    `names_en` varchar(100) NULL COMMENT '',
    KEY `pid` (`pid`),
    KEY `paths` (`paths`),
    KEY `levels` (`levels`),
    KEY `sort` (`sort`),
    KEY `okayapi_lvyou_jee_area_names` (`okayapi_lvyou_jee_area_names`),
    KEY `names_en` (`names_en`),
    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-6 of 6 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
pidint(11)
pathsvarchar(100)
levelsint(11)
sortint(11)
okayapi_lvyou_jee_area_namesvarchar(100)
names_envarchar(100)

Guess You Like

MySQL Table Design okayapi_opentrip_travel_admin

MySQL Table Design okayapi_opentrip_travel_category

MySQL Table Design okayapi_opentrip_travel_order

MySQL Table Design okayapi_opentrip_travel_product

MySQL Table Design okayapi_opentrip_travel_shopcart

MySQL Table Design okayapi_opentrip_travel_user

MySQL Table Design okayapi_travel_agents

MySQL Table Design okayapi_travel_agent_users

MySQL Table Design okayapi_travel_categories

MySQL Table Design okayapi_travel_depots

MySQL Table Design okayapi_travel_depot_annuals

MySQL Table Design okayapi_travel_depot_logs

MySQL Table Design okayapi_travel_depot_staffs

MySQL Table Design okayapi_travel_depot_vouchers

MySQL Table Design okayapi_travel_devices

MySQL Table Design okayapi_travel_exist_statistics

MySQL Table Design okayapi_travel_features

MySQL Table Design okayapi_travel_groups

MySQL Table Design okayapi_travel_orders

MySQL Table Design okayapi_travel_staff_exchanges

TOP ↑