MySQL数据库表结构设计
第 1-4 条, 共 4 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
item_id | bigint(20) | 是 | 商品ID | 普通索引 | ||
param_data | text | 是 | 参数数据,格式为json格式 | 无索引 | ||
created | datetime | 是 | 无索引 | |||
updated | datetime | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:B2C商城-商品规格和商品的关系表:https://open.yesapi.cn/tablelist/yesapi_xbinstore_tb_item_param_item.html
-- 数据库大全:B2C商城-商品规格和商品的关系表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_xbinstore_tb_item_param_item` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`item_id` bigint(20) NULL COMMENT '商品ID',
`param_data` text NULL COMMENT '参数数据,格式为json格式',
`created` datetime NULL COMMENT '',
`updated` datetime NULL COMMENT '',
KEY `item_id` (`item_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'B2C商城-商品规格和商品的关系表';
复制后,到数据库执行,即可创建此数据库表。