+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_landi_room_state:/tablelist/okayapi_landi_room_state.html


-- MySQL Table okayapi_landi_room_state
-- From: OkayAPI.com
CREATE TABLE `okayapi_landi_room_state` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `room_number` varchar(64) NOT NULL COMMENT '',
    `cus_id` int(11) NOT NULL COMMENT '',
    `cus_name` varchar(64) NOT NULL COMMENT '',
    `state` int(11) NOT NULL DEFAULT '0' COMMENT '0表示无人入住 1表示已有人入住 2房间非管理 3 其他使用',
    `room_id` int(11) NOT NULL COMMENT '',
    KEY `room_number` (`room_number`),
    KEY `cus_id` (`cus_id`),
    KEY `cus_name` (`cus_name`),
    KEY `state` (`state`),
    KEY `room_id` (`room_id`),
    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-5 of 5 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
room_numbervarchar(64)Unique Index
cus_idint(11)
cus_namevarchar(64)
stateint(11)00表示无人入住 1表示已有人入住 2房间非管理 3 其他使用0
room_idint(11)Unique Index

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_intern

MySQL Table Design okayapi_landi_invoice

MySQL Table Design okayapi_landi_invoice_detail

MySQL Table Design okayapi_landi_laundry

TOP ↑