MySQL数据库表结构设计
第 1-3 条, 共 3 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
goods_id | int(11) | 0 | 否 | 商品Id | 普通索引 | 0 |
attribute_id | int(11) | 0 | 否 | 属性Id | 普通索引 | 0 |
yesapi_nideshop_goods_attribute_value | text | 否 | 属性值 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:微同商城-商品属性:https://open.yesapi.cn/tablelist/yesapi_nideshop_goods_attribute.html
-- 数据库大全:微同商城-商品属性
-- 来源:YesApi.cn
CREATE TABLE `yesapi_nideshop_goods_attribute` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品Id',
`attribute_id` int(11) NOT NULL DEFAULT '0' COMMENT '属性Id',
`yesapi_nideshop_goods_attribute_value` text NOT NULL COMMENT '属性值',
KEY `goods_id` (`goods_id`),
KEY `attribute_id` (`attribute_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '微同商城-商品属性';
复制后,到数据库执行,即可创建此数据库表。