MySQL数据库表结构设计
第 1-11 条, 共 11 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
guest_id | int(10) | 是 | 普通索引 | |||
le_1 | double | 是 | 无索引 | |||
le_2 | double | 是 | 无索引 | |||
le_3 | double | 是 | 无索引 | |||
le_service | double | 是 | 无索引 | |||
in_1 | double | 是 | 无索引 | |||
in_2 | double | 是 | 无索引 | |||
in_3 | double | 是 | 无索引 | |||
in_service | double | 是 | 无索引 | |||
sys_state | int(11) | 1 | 是 | 无索引 | 1 | |
in_name | varchar(64) | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:LD酒店租房管理-实习生:https://open.yesapi.cn/tablelist/yesapi_landi_intern.html
-- 数据库大全:LD酒店租房管理-实习生
-- 来源:YesApi.cn
CREATE TABLE `yesapi_landi_intern` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`guest_id` int(10) NULL COMMENT '',
`le_1` double NULL COMMENT '',
`le_2` double NULL COMMENT '',
`le_3` double NULL COMMENT '',
`le_service` double NULL COMMENT '',
`in_1` double NULL COMMENT '',
`in_2` double NULL COMMENT '',
`in_3` double NULL COMMENT '',
`in_service` double NULL COMMENT '',
`sys_state` int(11) NULL DEFAULT '1' COMMENT '',
`in_name` varchar(64) NULL COMMENT '',
KEY `guest_id` (`guest_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'LD酒店租房管理-实习生';
复制后,到数据库执行,即可创建此数据库表。