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

MySQL建表SQL语句

数据库结构:LD酒店租房管理-酒水:https://open.yesapi.cn/tablelist/yesapi_landi_drinking_water.html


-- 数据库大全:LD酒店租房管理-酒水
-- 来源:YesApi.cn
CREATE TABLE `yesapi_landi_drinking_water` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `room_num` varchar(64) NULL COMMENT '',
    `guest_id` int(11) NULL COMMENT '',
    `guest_name` varchar(64) NULL COMMENT '',
    `barrel_count` int(11) NULL DEFAULT '0' COMMENT '桶装水数量',
    `barrel_remaincount` int(11) NULL DEFAULT '0' COMMENT '',
    `barrel_limitcount` int(11) NULL COMMENT '桶装水限额',
    `barrel_unitprice` double NULL DEFAULT '0' COMMENT '',
    `bottle_count` int(11) NULL DEFAULT '0' COMMENT '瓶装矿泉水(提)数量',
    `bottle_remaincount` int(11) NULL COMMENT '',
    `bottle_limitcount` int(11) NULL COMMENT '瓶装矿泉水(提)限额',
    `bottle_unitprice` double NULL COMMENT '',
    `excess_price` double NULL COMMENT '超出限额数量的总金额',
    `pay_mode` tinyint(3) NULL COMMENT '支付方式(现金0 月结1)',
    `yesapi_landi_drinking_water_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 '',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'LD酒店租房管理-酒水';

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


MySQL数据库表结构设计

第 1-19 条, 共 19 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
room_numvarchar(64)无索引
guest_idint(11)无索引
guest_namevarchar(64)无索引
barrel_countint(11)0桶装水数量无索引0
barrel_remaincountint(11)0无索引0
barrel_limitcountint(11)桶装水限额无索引
barrel_unitpricedouble0无索引0
bottle_countint(11)0瓶装矿泉水(提)数量无索引0
bottle_remaincountint(11)无索引
bottle_limitcountint(11)瓶装矿泉水(提)限额无索引
bottle_unitpricedouble无索引
excess_pricedouble超出限额数量的总金额无索引
pay_modetinyint(3)支付方式(现金0 月结1)无索引
yesapi_landi_drinking_water_commentvarchar(64)无索引
staff_idint(11)无索引
staff_namevarchar(64)无索引
occur_timedatetime无索引
import_timedatetime无索引
edit_timedatetime无索引

猜你喜欢

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酒店租房管理-邮件提醒



回到顶部 ↑