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