MySQL数据库表结构设计
第 1-7 条, 共 7 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
parent_id | smallint(5) | 0 | 否 | 普通索引 | 0 | |
yesapi_ecs_shop_config_code | varchar(30) | 否 | 唯一索引 | |||
yesapi_ecs_shop_config_type | varchar(10) | 否 | 无索引 | |||
store_range | varchar(255) | 否 | 无索引 | |||
store_dir | varchar(255) | 否 | 无索引 | |||
yesapi_ecs_shop_config_value | text | 否 | 无索引 | |||
sort_order | tinyint(3) | 1 | 否 | 无索引 | 1 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:汽车故障诊断-:https://open.yesapi.cn/tablelist/yesapi_ecs_shop_config.html
-- 数据库大全:汽车故障诊断-
-- 来源:YesApi.cn
CREATE TABLE `yesapi_ecs_shop_config` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` smallint(5) NOT NULL DEFAULT '0' COMMENT '',
`yesapi_ecs_shop_config_code` varchar(30) NOT NULL COMMENT '',
`yesapi_ecs_shop_config_type` varchar(10) NOT NULL COMMENT '',
`store_range` varchar(255) NOT NULL COMMENT '',
`store_dir` varchar(255) NOT NULL COMMENT '',
`yesapi_ecs_shop_config_value` text NOT NULL COMMENT '',
`sort_order` tinyint(3) NOT NULL DEFAULT '1' COMMENT '',
KEY `parent_id` (`parent_id`),
UNIQUE KEY `yesapi_ecs_shop_config_code` (`yesapi_ecs_shop_config_code`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '汽车故障诊断-';
复制后,到数据库执行,即可创建此数据库表。