+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_landi_room:/tablelist/okayapi_landi_room.html


-- MySQL Table okayapi_landi_room
-- From: OkayAPI.com
CREATE TABLE `okayapi_landi_room` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `room_number` varchar(64) NULL COMMENT '',
    `okayapi_landi_room_type` varchar(64) NULL COMMENT '',
    `area` double NULL COMMENT '',
    `rent` int(11) NULL COMMENT '',
    `state` int(11) NULL COMMENT '',
    `comm` varchar(256) NULL COMMENT '',
    `owner_name` varchar(10) NULL COMMENT '',
    `receipt_time` datetime NULL COMMENT '接收时间',
    `refund_time` datetime NULL COMMENT '退还时间',
    `replace_room` varchar(64) NULL COMMENT '',
    KEY `room_number` (`room_number`),
    KEY `okayapi_landi_room_type` (`okayapi_landi_room_type`),
    KEY `area` (`area`),
    KEY `rent` (`rent`),
    KEY `state` (`state`),
    KEY `comm` (`comm`),
    KEY `owner_name` (`owner_name`),
    KEY `receipt_time` (`receipt_time`),
    KEY `refund_time` (`refund_time`),
    KEY `replace_room` (`replace_room`),
    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-10 of 10 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
room_numbervarchar(64)Unique Index
okayapi_landi_room_typevarchar(64)
areadouble
rentint(11)
stateint(11)
commvarchar(256)
owner_namevarchar(10)
receipt_timedatetime接收时间
refund_timedatetime退还时间
replace_roomvarchar(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_intern

MySQL Table Design okayapi_landi_invoice

MySQL Table Design okayapi_landi_invoice_detail

MySQL Table Design okayapi_landi_laundry

TOP ↑