+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_landi_room_meter:/tablelist/okayapi_landi_room_meter.html


-- MySQL Table okayapi_landi_room_meter
-- From: OkayAPI.com
CREATE TABLE `okayapi_landi_room_meter` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `room_id` int(11) NULL COMMENT '',
    `okayapi_landi_room_meter_type` varchar(11) NULL COMMENT 'water gas elec',
    `meter_number` varchar(64) NULL COMMENT '',
    `year_init_val` double NULL COMMENT '',
    `last_month_val` double NULL COMMENT '',
    `cur_val` double NULL COMMENT '',
    `okayapi_landi_room_meter_month` int(10) NULL COMMENT '计费月份',
    `step` int(5) NULL COMMENT '阶梯计价',
    `money` double NULL COMMENT '',
    KEY `room_id` (`room_id`),
    KEY `okayapi_landi_room_meter_type` (`okayapi_landi_room_meter_type`),
    KEY `meter_number` (`meter_number`),
    KEY `year_init_val` (`year_init_val`),
    KEY `last_month_val` (`last_month_val`),
    KEY `cur_val` (`cur_val`),
    KEY `okayapi_landi_room_meter_month` (`okayapi_landi_room_meter_month`),
    KEY `step` (`step`),
    KEY `money` (`money`),
    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-9 of 9 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
room_idint(11)Normal Index
okayapi_landi_room_meter_typevarchar(11)water gas elec
meter_numbervarchar(64)Unique Index
year_init_valdouble
last_month_valdouble
cur_valdouble
okayapi_landi_room_meter_monthint(10)计费月份
stepint(5)阶梯计价
moneydouble

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 ↑