+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_opentrip_travel_category:/tablelist/okayapi_opentrip_travel_category.html


-- MySQL Table okayapi_opentrip_travel_category
-- From: OkayAPI.com
CREATE TABLE `okayapi_opentrip_travel_category` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `okayapi_opentrip_travel_category_name` varchar(20) NOT NULL COMMENT '分类名',
    `pid` int(10) NOT NULL COMMENT '父分类ID',
    KEY `okayapi_opentrip_travel_category_name` (`okayapi_opentrip_travel_category_name`),
    KEY `pid` (`pid`),
    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-2 of 2 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
okayapi_opentrip_travel_category_namevarchar(20)分类名
pidint(10)父分类ID

Guess You Like

MySQL Table Design okayapi_opentrip_travel_admin

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

MySQL Table Design okayapi_travel_users

TOP ↑