MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
ctime | datetime | 是 | 无索引 | |||
item_id | int(11) | 是 | 普通索引 | |||
total | int(11) | 是 | 无索引 | |||
per_money | double | 是 | 无索引 | |||
all_money | double | 是 | 无索引 | |||
yesapi_landi_grocery_running_type | int(11) | 是 | 1 buy, 2 sell, 3 use | 无索引 | ||
sys_state | int(11) | 1 | 是 | 无索引 | 1 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:LD酒店租房管理-食品杂货:https://open.yesapi.cn/tablelist/yesapi_landi_grocery_running.html
-- 数据库大全:LD酒店租房管理-食品杂货
-- 来源:YesApi.cn
CREATE TABLE `yesapi_landi_grocery_running` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ctime` datetime NULL COMMENT '',
`item_id` int(11) NULL COMMENT '',
`total` int(11) NULL COMMENT '',
`per_money` double NULL COMMENT '',
`all_money` double NULL COMMENT '',
`yesapi_landi_grocery_running_type` int(11) NULL COMMENT '1 buy, 2 sell, 3 use',
`sys_state` int(11) NULL DEFAULT '1' COMMENT '',
KEY `item_id` (`item_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'LD酒店租房管理-食品杂货';
复制后,到数据库执行,即可创建此数据库表。