+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_landi_shoes_polishing:/tablelist/okayapi_landi_shoes_polishing.html


-- MySQL Table okayapi_landi_shoes_polishing
-- From: OkayAPI.com
CREATE TABLE `okayapi_landi_shoes_polishing` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `room_num` varchar(64) NULL COMMENT '',
    `guest_id` int(11) NULL COMMENT '',
    `guest_name` varchar(11) NULL COMMENT '',
    `count` int(11) NULL COMMENT '',
    `total_price` double NULL COMMENT '',
    `pay_mode` tinyint(3) NULL COMMENT '支付方式:现金0 月结1',
    `okayapi_landi_shoes_polishing_comment` varchar(64) NULL COMMENT '',
    `staff_id` int(11) NULL COMMENT '',
    `staff_name` varchar(64) NULL COMMENT '',
    `occur_time` datetime NULL COMMENT '',
    `import_time` datetime NULL COMMENT '',
    `edit_time` datetime NULL COMMENT '',
    KEY `room_num` (`room_num`),
    KEY `guest_id` (`guest_id`),
    KEY `guest_name` (`guest_name`),
    KEY `count` (`count`),
    KEY `total_price` (`total_price`),
    KEY `pay_mode` (`pay_mode`),
    KEY `okayapi_landi_shoes_polishing_comment` (`okayapi_landi_shoes_polishing_comment`),
    KEY `staff_id` (`staff_id`),
    KEY `staff_name` (`staff_name`),
    KEY `occur_time` (`occur_time`),
    KEY `import_time` (`import_time`),
    KEY `edit_time` (`edit_time`),
    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-12 of 12 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
room_numvarchar(64)
guest_idint(11)
guest_namevarchar(11)
countint(11)
total_pricedouble
pay_modetinyint(3)支付方式:现金0 月结1
okayapi_landi_shoes_polishing_commentvarchar(64)
staff_idint(11)
staff_namevarchar(64)
occur_timedatetime
import_timedatetime
edit_timedatetime

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 ↑