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