MySQL数据库表结构设计
第 1-6 条, 共 6 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
goods_id | int(11) | 0 | 否 | 商品表的商品ID | 无索引 | 0 |
specifications | varchar(1023) | 否 | 商品规格值列表,采用JSON数组格式 | 无索引 | ||
price | decimal(10,2) | 0.00 | 否 | 商品货品价格 | 无索引 | 0.00 |
yesapi_dts_goods_product_number | int(11) | 0 | 否 | 商品货品数量 | 无索引 | 0 |
url | varchar(125) | 是 | 商品货品图片 | 无索引 | ||
deleted | tinyint(1) | 0 | 是 | 逻辑删除 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:商城-商品货品表:https://open.yesapi.cn/tablelist/yesapi_dts_goods_product.html
-- 数据库大全:商城-商品货品表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_dts_goods_product` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`goods_id` int(11) NULL DEFAULT '0' COMMENT '商品表的商品ID',
`specifications` varchar(1023) NULL COMMENT '商品规格值列表,采用JSON数组格式',
`price` decimal(10,2) NULL DEFAULT '0.00' COMMENT '商品货品价格',
`yesapi_dts_goods_product_number` int(11) NULL DEFAULT '0' COMMENT '商品货品数量',
`url` varchar(125) NULL COMMENT '商品货品图片',
`deleted` tinyint(1) NULL DEFAULT '0' COMMENT '逻辑删除',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '商城-商品货品表';
复制后,到数据库执行,即可创建此数据库表。