MySQL数据库表结构设计
第 1-19 条, 共 19 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
room_num | varchar(64) | 是 | 无索引 | |||
guest_id | int(11) | 是 | 无索引 | |||
guest_name | varchar(64) | 是 | 无索引 | |||
barrel_count | int(11) | 0 | 是 | 桶装水数量 | 无索引 | 0 |
barrel_remaincount | int(11) | 0 | 是 | 无索引 | 0 | |
barrel_limitcount | int(11) | 是 | 桶装水限额 | 无索引 | ||
barrel_unitprice | double | 0 | 是 | 无索引 | 0 | |
bottle_count | int(11) | 0 | 是 | 瓶装矿泉水(提)数量 | 无索引 | 0 |
bottle_remaincount | int(11) | 是 | 无索引 | |||
bottle_limitcount | int(11) | 是 | 瓶装矿泉水(提)限额 | 无索引 | ||
bottle_unitprice | double | 是 | 无索引 | |||
excess_price | double | 是 | 超出限额数量的总金额 | 无索引 | ||
pay_mode | tinyint(3) | 是 | 支付方式(现金0 月结1) | 无索引 | ||
yesapi_landi_drinking_water_comment | varchar(64) | 是 | 无索引 | |||
staff_id | int(11) | 是 | 无索引 | |||
staff_name | varchar(64) | 是 | 无索引 | |||
occur_time | datetime | 是 | 无索引 | |||
import_time | datetime | 是 | 无索引 | |||
edit_time | datetime | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构: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酒店租房管理-酒水';
复制后,到数据库执行,即可创建此数据库表。