MySQL数据库表结构设计
第 1-3 条, 共 3 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
yesapi_mall_pms_product_attribute_category_name | varchar(64) | 是 | 无索引 | |||
attribute_count | int(11) | 0 | 是 | 属性数量 | 无索引 | 0 |
param_count | int(11) | 0 | 是 | 参数数量 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:电商-产品属性分类表:https://open.yesapi.cn/tablelist/yesapi_mall_pms_product_attribute_category.html
-- 数据库大全:电商-产品属性分类表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_mall_pms_product_attribute_category` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`yesapi_mall_pms_product_attribute_category_name` varchar(64) NULL COMMENT '',
`attribute_count` int(11) NULL DEFAULT '0' COMMENT '属性数量',
`param_count` int(11) NULL DEFAULT '0' COMMENT '参数数量',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '电商-产品属性分类表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 ShopXO商城-手机 - 用户中心导航