MySQL数据库表结构设计
第 1-4 条, 共 4 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
item_cat_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.html
-- 数据库大全:B2C商城-商品规则参数
-- 来源:YesApi.cn
CREATE TABLE `yesapi_xbinstore_tb_item_param` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`item_cat_id` bigint(20) NULL COMMENT '商品类目ID',
`param_data` text NULL COMMENT '参数数据,格式为json格式',
`created` datetime NULL COMMENT '',
`updated` datetime NULL COMMENT '',
KEY `item_cat_id` (`item_cat_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'B2C商城-商品规则参数';
复制后,到数据库执行,即可创建此数据库表。