MySQL数据库表结构设计
第 1-42 条, 共 42 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
eighteenth | int(11) | 0 | 是 | 无索引 | 0 | |
nineteenth | int(11) | 0 | 是 | 无索引 | 0 | |
twentieth | int(11) | 0 | 是 | 无索引 | 0 | |
twenty_first | int(11) | 0 | 是 | 无索引 | 0 | |
twenty_second | int(11) | 0 | 是 | 无索引 | 0 | |
twenty_third | int(11) | 0 | 是 | 无索引 | 0 | |
twenty_fourth | int(11) | 0 | 是 | 无索引 | 0 | |
twenty_fifth | int(11) | 0 | 是 | 无索引 | 0 | |
twenty_sixth | int(11) | 0 | 是 | 无索引 | 0 | |
twenty_seventh | int(11) | 0 | 是 | 无索引 | 0 | |
twenty_eighth | int(11) | 0 | 是 | 无索引 | 0 | |
twenty_ninth | int(11) | 0 | 是 | 无索引 | 0 | |
thirtieth | int(11) | 0 | 是 | 无索引 | 0 | |
thirty_first | int(11) | 0 | 是 | 无索引 | 0 | |
days | int(11) | 0 | 是 | 无索引 | 0 | |
total | int(11) | 0 | 是 | 无索引 | 0 | |
occur_time | datetime | 是 | 无索引 | |||
import_time | datetime | 是 | 无索引 | |||
edit_time | datetime | 是 | 无索引 | |||
yesapi_landi_shuttle_bus_year | int(11) | 是 | 普通索引 | |||
yesapi_landi_shuttle_bus_month | int(11) | 是 | 无索引 | |||
room_num | varchar(64) | 是 | 普通索引 | |||
guest_id | int(11) | 是 | 无索引 | |||
guest_name | varchar(64) | 是 | 无索引 | |||
other_people | varchar(100) | 是 | 无索引 | |||
yesapi_landi_shuttle_bus_first | int(11) | 0 | 是 | 无索引 | 0 | |
yesapi_landi_shuttle_bus_second | int(11) | 0 | 是 | 无索引 | 0 | |
third | int(11) | 0 | 是 | 无索引 | 0 | |
fourth | int(11) | 0 | 是 | 无索引 | 0 | |
fifth | int(11) | 0 | 是 | 无索引 | 0 | |
sixth | int(11) | 0 | 是 | 无索引 | 0 | |
seventh | int(11) | 0 | 是 | 无索引 | 0 | |
eighth | int(11) | 0 | 是 | 无索引 | 0 | |
ninth | int(11) | 0 | 是 | 无索引 | 0 | |
tenth | int(11) | 0 | 是 | 无索引 | 0 | |
eleventh | int(11) | 0 | 是 | 无索引 | 0 | |
twelfth | int(11) | 0 | 是 | 无索引 | 0 | |
thirteenth | int(11) | 0 | 是 | 无索引 | 0 | |
fourteenth | int(11) | 0 | 是 | 无索引 | 0 | |
fifteenth | int(11) | 0 | 是 | 无索引 | 0 | |
sixteenth | int(11) | 0 | 是 | 无索引 | 0 | |
seventeenth | int(11) | 0 | 是 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:LD酒店租房管理-穿梭巴士:https://open.yesapi.cn/tablelist/yesapi_landi_shuttle_bus.html
-- 数据库大全:LD酒店租房管理-穿梭巴士
-- 来源:YesApi.cn
CREATE TABLE `yesapi_landi_shuttle_bus` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`eighteenth` int(11) NULL DEFAULT '0' COMMENT '',
`nineteenth` int(11) NULL DEFAULT '0' COMMENT '',
`twentieth` int(11) NULL DEFAULT '0' COMMENT '',
`twenty_first` int(11) NULL DEFAULT '0' COMMENT '',
`twenty_second` int(11) NULL DEFAULT '0' COMMENT '',
`twenty_third` int(11) NULL DEFAULT '0' COMMENT '',
`twenty_fourth` int(11) NULL DEFAULT '0' COMMENT '',
`twenty_fifth` int(11) NULL DEFAULT '0' COMMENT '',
`twenty_sixth` int(11) NULL DEFAULT '0' COMMENT '',
`twenty_seventh` int(11) NULL DEFAULT '0' COMMENT '',
`twenty_eighth` int(11) NULL DEFAULT '0' COMMENT '',
`twenty_ninth` int(11) NULL DEFAULT '0' COMMENT '',
`thirtieth` int(11) NULL DEFAULT '0' COMMENT '',
`thirty_first` int(11) NULL DEFAULT '0' COMMENT '',
`days` int(11) NULL DEFAULT '0' COMMENT '',
`total` int(11) NULL DEFAULT '0' COMMENT '',
`occur_time` datetime NULL COMMENT '',
`import_time` datetime NULL COMMENT '',
`edit_time` datetime NULL COMMENT '',
`yesapi_landi_shuttle_bus_year` int(11) NULL COMMENT '',
`yesapi_landi_shuttle_bus_month` int(11) NULL COMMENT '',
`room_num` varchar(64) NULL COMMENT '',
`guest_id` int(11) NULL COMMENT '',
`guest_name` varchar(64) NULL COMMENT '',
`other_people` varchar(100) NULL COMMENT '',
`yesapi_landi_shuttle_bus_first` int(11) NULL DEFAULT '0' COMMENT '',
`yesapi_landi_shuttle_bus_second` int(11) NULL DEFAULT '0' COMMENT '',
`third` int(11) NULL DEFAULT '0' COMMENT '',
`fourth` int(11) NULL DEFAULT '0' COMMENT '',
`fifth` int(11) NULL DEFAULT '0' COMMENT '',
`sixth` int(11) NULL DEFAULT '0' COMMENT '',
`seventh` int(11) NULL DEFAULT '0' COMMENT '',
`eighth` int(11) NULL DEFAULT '0' COMMENT '',
`ninth` int(11) NULL DEFAULT '0' COMMENT '',
`tenth` int(11) NULL DEFAULT '0' COMMENT '',
`eleventh` int(11) NULL DEFAULT '0' COMMENT '',
`twelfth` int(11) NULL DEFAULT '0' COMMENT '',
`thirteenth` int(11) NULL DEFAULT '0' COMMENT '',
`fourteenth` int(11) NULL DEFAULT '0' COMMENT '',
`fifteenth` int(11) NULL DEFAULT '0' COMMENT '',
`sixteenth` int(11) NULL DEFAULT '0' COMMENT '',
`seventeenth` int(11) NULL DEFAULT '0' COMMENT '',
KEY `yesapi_landi_shuttle_bus_year` (`yesapi_landi_shuttle_bus_year`),
KEY `room_num` (`room_num`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'LD酒店租房管理-穿梭巴士';
复制后,到数据库执行,即可创建此数据库表。