MySQL数据库表结构设计
第 1-11 条, 共 11 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
product_attribute_category_id | bigint(20) | 是 | 无索引 | |||
yesapi_mall_pms_product_attribute_name | varchar(64) | 是 | 无索引 | |||
select_type | int(1) | 是 | 属性选择类型:0->唯一;1->单选;2->多选 | 无索引 | ||
input_type | int(1) | 是 | 属性录入方式:0->手工录入;1->从列表中选取 | 无索引 | ||
input_list | varchar(255) | 是 | 可选值列表,以逗号隔开 | 无索引 | ||
sort | int(11) | 是 | 排序字段:最高的可以单独上传图片 | 无索引 | ||
filter_type | int(1) | 是 | 分类筛选样式:1->普通;1->颜色 | 无索引 | ||
search_type | int(1) | 是 | 检索类型;0->不需要进行检索;1->关键字检索;2->范围检索 | 无索引 | ||
related_status | int(1) | 是 | 相同属性产品是否关联;0->不关联;1->关联 | 无索引 | ||
hand_add_status | int(1) | 是 | 是否支持手动新增;0->不支持;1->支持 | 无索引 | ||
yesapi_mall_pms_product_attribute_type | int(1) | 是 | 属性的类型;0->规格;1->参数 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:电商-商品属性参数表:https://open.yesapi.cn/tablelist/yesapi_mall_pms_product_attribute.html
-- 数据库大全:电商-商品属性参数表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_mall_pms_product_attribute` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`product_attribute_category_id` bigint(20) NULL COMMENT '',
`yesapi_mall_pms_product_attribute_name` varchar(64) NULL COMMENT '',
`select_type` int(1) NULL COMMENT '属性选择类型:0->唯一;1->单选;2->多选',
`input_type` int(1) NULL COMMENT '属性录入方式:0->手工录入;1->从列表中选取',
`input_list` varchar(255) NULL COMMENT '可选值列表,以逗号隔开',
`sort` int(11) NULL COMMENT '排序字段:最高的可以单独上传图片',
`filter_type` int(1) NULL COMMENT '分类筛选样式:1->普通;1->颜色',
`search_type` int(1) NULL COMMENT '检索类型;0->不需要进行检索;1->关键字检索;2->范围检索',
`related_status` int(1) NULL COMMENT '相同属性产品是否关联;0->不关联;1->关联',
`hand_add_status` int(1) NULL COMMENT '是否支持手动新增;0->不支持;1->支持',
`yesapi_mall_pms_product_attribute_type` int(1) NULL COMMENT '属性的类型;0->规格;1->参数',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '电商-商品属性参数表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 ShopXO商城-手机 - 用户中心导航