MySQL数据库表结构设计
第 1-9 条, 共 9 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
yesapi_landi_plan_progress_time | datetime | 是 | 无索引 | |||
plan_id | int(11) | 是 | 普通索引 | |||
fac_id | int(11) | 是 | 无索引 | |||
term | varchar(64) | 是 | 无索引 | |||
total | int(11) | 是 | 无索引 | |||
staff | varchar(64) | 是 | 无索引 | |||
all_money | double | 是 | 无索引 | |||
yesapi_landi_plan_progress_comment | varchar(64) | 是 | 无索引 | |||
sys_state | int(11) | 1 | 是 | 无索引 | 1 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:LD酒店租房管理-采购进度:https://open.yesapi.cn/tablelist/yesapi_landi_plan_progress.html
-- 数据库大全:LD酒店租房管理-采购进度
-- 来源:YesApi.cn
CREATE TABLE `yesapi_landi_plan_progress` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`yesapi_landi_plan_progress_time` datetime NULL COMMENT '',
`plan_id` int(11) NULL COMMENT '',
`fac_id` int(11) NULL COMMENT '',
`term` varchar(64) NULL COMMENT '',
`total` int(11) NULL COMMENT '',
`staff` varchar(64) NULL COMMENT '',
`all_money` double NULL COMMENT '',
`yesapi_landi_plan_progress_comment` varchar(64) NULL COMMENT '',
`sys_state` int(11) NULL DEFAULT '1' COMMENT '',
KEY `plan_id` (`plan_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'LD酒店租房管理-采购进度';
复制后,到数据库执行,即可创建此数据库表。