MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
reservation_people | varchar(50) | 是 | 预定人 | 无索引 | ||
reservation_content | varchar(2048) | 是 | 预定内容 | 无索引 | ||
reservation_start_time | datetime | 1970-01-01 00:00:00 | 是 | 预定开始时间 | 无索引 | 1970-01-01 00:00:00 |
reservation_end_time | datetime | 2100-01-01 00:00:00 | 是 | 预定结束时间 | 无索引 | 2100-01-01 00:00:00 |
reservation_price | int(10) | 9999999 | 是 | 预定费 | 无索引 | 9999999 |
reservation_telephone | varchar(50) | 是 | 预定人联系方式 | 无索引 | ||
reservation_status | tinyint(3) | 是 | 预定状态,0预约失败 ,1审核中,2预约成功 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:预订:https://open.yesapi.cn/tablelist/okayapi_reservation.html
-- 数据库大全:预订
-- 来源:YesApi.cn
CREATE TABLE `okayapi_reservation` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`reservation_people` varchar(50) NULL COMMENT '预定人',
`reservation_content` varchar(2048) NULL COMMENT '预定内容',
`reservation_start_time` datetime NULL DEFAULT '1970-01-01 00:00:00' COMMENT '预定开始时间',
`reservation_end_time` datetime NULL DEFAULT '2100-01-01 00:00:00' COMMENT '预定结束时间',
`reservation_price` int(10) NULL DEFAULT '9999999' COMMENT '预定费',
`reservation_telephone` varchar(50) NULL COMMENT '预定人联系方式',
`reservation_status` tinyint(3) NULL COMMENT '预定状态,0预约失败 ,1审核中,2预约成功',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '预订';
复制后,到数据库执行,即可创建此数据库表。