MySQL数据库表结构设计
第 1-3 条, 共 3 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
attribute_group_id | int(11) | 否 | 无索引 | |||
sale_type | varchar(32) | 否 | 无索引 | |||
sort_order | int(3) | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:openant电商-属性分组:https://open.yesapi.cn/tablelist/yesapi_openant_attribute_group.html
-- 数据库大全:openant电商-属性分组
-- 来源:YesApi.cn
CREATE TABLE `yesapi_openant_attribute_group` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`attribute_group_id` int(11) NOT NULL COMMENT '',
`sale_type` varchar(32) NOT NULL COMMENT '',
`sort_order` int(3) NOT NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'openant电商-属性分组';
复制后,到数据库执行,即可创建此数据库表。