+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_landi_income:/tablelist/okayapi_landi_income.html


-- MySQL Table okayapi_landi_income
-- From: OkayAPI.com
CREATE TABLE `okayapi_landi_income` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `room_number` varchar(64) NULL COMMENT '',
    `guest_id` int(11) NULL COMMENT '',
    `guest_name` varchar(64) NULL COMMENT '',
    `okayapi_landi_income_time` datetime NULL COMMENT '',
    `contract_receive` double NULL DEFAULT '0' COMMENT '',
    `contaact_pay` double NULL DEFAULT '0' COMMENT '',
    `benifit` double NULL DEFAULT '0' COMMENT '',
    `okayapi_landi_income_source` double NULL DEFAULT '0' COMMENT '',
    `daily_service` double NULL DEFAULT '0' COMMENT '',
    `maintain` double NULL DEFAULT '0' COMMENT '',
    `shuttle_bus` double NULL DEFAULT '0' COMMENT '',
    `laundry` double NULL DEFAULT '0' COMMENT '',
    `sys_state` int(11) NULL DEFAULT '1' COMMENT '',
    KEY `room_number` (`room_number`),
    KEY `guest_id` (`guest_id`),
    KEY `guest_name` (`guest_name`),
    KEY `okayapi_landi_income_time` (`okayapi_landi_income_time`),
    KEY `contract_receive` (`contract_receive`),
    KEY `contaact_pay` (`contaact_pay`),
    KEY `benifit` (`benifit`),
    KEY `okayapi_landi_income_source` (`okayapi_landi_income_source`),
    KEY `daily_service` (`daily_service`),
    KEY `maintain` (`maintain`),
    KEY `shuttle_bus` (`shuttle_bus`),
    KEY `laundry` (`laundry`),
    KEY `sys_state` (`sys_state`),
    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-13 of 13 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
room_numbervarchar(64)Normal Index
guest_idint(11)
guest_namevarchar(64)
okayapi_landi_income_timedatetime
contract_receivedouble00
contaact_paydouble00
benifitdouble00
okayapi_landi_income_sourcedouble00
daily_servicedouble00
maintaindouble00
shuttle_busdouble00
laundrydouble00
sys_stateint(11)11

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_intern

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 ↑