+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_landi_intern:/tablelist/okayapi_landi_intern.html


-- MySQL Table okayapi_landi_intern
-- From: OkayAPI.com
CREATE TABLE `okayapi_landi_intern` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `guest_id` int(10) NULL COMMENT '',
    `le_1` double NULL COMMENT '',
    `le_2` double NULL COMMENT '',
    `le_3` double NULL COMMENT '',
    `le_service` double NULL COMMENT '',
    `in_1` double NULL COMMENT '',
    `in_2` double NULL COMMENT '',
    `in_3` double NULL COMMENT '',
    `in_service` double NULL COMMENT '',
    `sys_state` int(11) NULL DEFAULT '1' COMMENT '',
    `in_name` varchar(64) NULL COMMENT '',
    KEY `guest_id` (`guest_id`),
    KEY `le_1` (`le_1`),
    KEY `le_2` (`le_2`),
    KEY `le_3` (`le_3`),
    KEY `le_service` (`le_service`),
    KEY `in_1` (`in_1`),
    KEY `in_2` (`in_2`),
    KEY `in_3` (`in_3`),
    KEY `in_service` (`in_service`),
    KEY `sys_state` (`sys_state`),
    KEY `in_name` (`in_name`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'LD酒店租房管理-实习生';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-11 of 11 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
guest_idint(10)Normal Index
le_1double
le_2double
le_3double
le_servicedouble
in_1double
in_2double
in_3double
in_servicedouble
sys_stateint(11)11
in_namevarchar(64)

Guess You Like

MySQL Table Design okayapi_landi_agent_purchase

MySQL Table Design okayapi_landi_contract_income

MySQL Table Design okayapi_landi_cost_le

MySQL Table Design okayapi_landi_daily_service

MySQL Table Design okayapi_landi_diary_reminder

MySQL Table Design okayapi_landi_drinking_water

MySQL Table Design okayapi_landi_emergency_problem

MySQL Table Design okayapi_landi_fac_sta

MySQL Table Design okayapi_landi_flight_picking

MySQL Table Design okayapi_landi_grocery_item

MySQL Table Design okayapi_landi_grocery_running

MySQL Table Design okayapi_landi_guest

MySQL Table Design okayapi_landi_guest_balance

MySQL Table Design okayapi_landi_guest_service

MySQL Table Design okayapi_landi_host

MySQL Table Design okayapi_landi_income

MySQL Table Design okayapi_landi_invoice

MySQL Table Design okayapi_landi_invoice_detail

MySQL Table Design okayapi_landi_laundry

MySQL Table Design okayapi_landi_mail_reminder

TOP ↑