MySQL数据库表结构设计
第 1-5 条, 共 5 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
attribute_category_id | int(11) | 0 | 否 | 商品类型 | 普通索引 | 0 |
yesapi_nideshop_attribute_name | varchar(60) | 否 | 属性名称 | 无索引 | ||
input_type | tinyint(1) | 1 | 否 | 当添加商品时,该属性的添加类别; 0为手功输入;1为选择输入;2为多行文本输入 | 无索引 | 1 |
yesapi_nideshop_attribute_value | text | 否 | 即选择输入,则attr_name对应的值的取值就是该这字段值 | 无索引 | ||
sort_order | tinyint(3) | 0 | 否 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:微同商城-属性:https://open.yesapi.cn/tablelist/yesapi_nideshop_attribute.html
-- 数据库大全:微同商城-属性
-- 来源:YesApi.cn
CREATE TABLE `yesapi_nideshop_attribute` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`attribute_category_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品类型',
`yesapi_nideshop_attribute_name` varchar(60) NOT NULL COMMENT '属性名称',
`input_type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '当添加商品时,该属性的添加类别; 0为手功输入;1为选择输入;2为多行文本输入',
`yesapi_nideshop_attribute_value` text NOT NULL COMMENT '即选择输入,则attr_name对应的值的取值就是该这字段值 ',
`sort_order` tinyint(3) NOT NULL DEFAULT '0' COMMENT '',
KEY `attribute_category_id` (`attribute_category_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '微同商城-属性';
复制后,到数据库执行,即可创建此数据库表。