+ 立即免费创建此表 返回数据库大全

MySQL数据库表结构设计

第 1-9 条, 共 9 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
guest_idint(10)普通索引
room_numbervarchar(64)普通索引
charge_turnint(11)无索引
charge_wayvarchar(64)无索引
return_turnint(11)无索引
invoice_turnint(11)无索引
begin_daydate无索引
end_daydate无索引
sys_stateint(11)1无索引1

MySQL建表SQL语句 免费MySQL数据库表结构设计

数据库结构:LD酒店租房管理-访客零钱:https://open.yesapi.cn/tablelist/yesapi_landi_guest_balance.html


-- 数据库大全:LD酒店租房管理-访客零钱
-- 来源:YesApi.cn
CREATE TABLE `yesapi_landi_guest_balance` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `guest_id` int(10) NULL COMMENT '',
    `room_number` varchar(64) NULL COMMENT '',
    `charge_turn` int(11) NULL COMMENT '',
    `charge_way` varchar(64) NULL COMMENT '',
    `return_turn` int(11) NULL COMMENT '',
    `invoice_turn` int(11) NULL COMMENT '',
    `begin_day` date NULL COMMENT '',
    `end_day` date NULL COMMENT '',
    `sys_state` int(11) NULL DEFAULT '1' COMMENT '',
    KEY `guest_id` (`guest_id`),
    KEY `room_number` (`room_number`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'LD酒店租房管理-访客零钱';

复制后,到数据库执行,即可创建此数据库表。


猜你喜欢

MySQL数据库设计 LD酒店租房管理-代购

MySQL数据库设计 LD酒店租房管理-合约收入

MySQL数据库设计 LD酒店租房管理-成本费用

MySQL数据库设计 LD酒店租房管理-日常服务

MySQL数据库设计 LD酒店租房管理-日记提醒

MySQL数据库设计 LD酒店租房管理-酒水

MySQL数据库设计 LD酒店租房管理-紧急问题

MySQL数据库设计 LD酒店租房管理-固定资产

MySQL数据库设计 LD酒店租房管理-接机

MySQL数据库设计 LD酒店租房管理-饮料

MySQL数据库设计 LD酒店租房管理-食品杂货

MySQL数据库设计 LD酒店租房管理-访客

MySQL数据库设计 LD酒店租房管理-贵宾服务

MySQL数据库设计 LD酒店租房管理-业主

MySQL数据库设计 LD酒店租房管理-收入

MySQL数据库设计 LD酒店租房管理-实习生

MySQL数据库设计 LD酒店租房管理-发票

MySQL数据库设计 LD酒店租房管理-发票详情

MySQL数据库设计 LD酒店租房管理-洗衣物

MySQL数据库设计 LD酒店租房管理-邮件提醒



回到顶部 ↑