+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_lvyou_jee_order_userinfo:/tablelist/okayapi_lvyou_jee_order_userinfo.html


-- MySQL Table okayapi_lvyou_jee_order_userinfo
-- From: OkayAPI.com
CREATE TABLE `okayapi_lvyou_jee_order_userinfo` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `order_id` int(11) NOT NULL COMMENT '订单表ID号(非订单号)',
    `okayapi_lvyou_jee_order_userinfo_names` varchar(16) NOT NULL COMMENT '用户姓名',
    `old_type` smallint(2) NOT NULL DEFAULT '1' COMMENT '',
    `credentials` smallint(2) NOT NULL COMMENT '证件类型',
    `content` varchar(120) NOT NULL COMMENT '信息内容',
    `okayapi_lvyou_jee_order_userinfo_type` varchar(10) NOT NULL COMMENT '信息所属分类(酒店、景点或线路)',
    KEY `order_id` (`order_id`),
    KEY `okayapi_lvyou_jee_order_userinfo_names` (`okayapi_lvyou_jee_order_userinfo_names`),
    KEY `old_type` (`old_type`),
    KEY `credentials` (`credentials`),
    KEY `content` (`content`),
    KEY `okayapi_lvyou_jee_order_userinfo_type` (`okayapi_lvyou_jee_order_userinfo_type`),
    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
order_idint(11)订单表ID号(非订单号)
okayapi_lvyou_jee_order_userinfo_namesvarchar(16)用户姓名
old_typesmallint(2)11
credentialssmallint(2)证件类型
contentvarchar(120)信息内容
okayapi_lvyou_jee_order_userinfo_typevarchar(10)信息所属分类(酒店、景点或线路)

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 ↑