MySQL数据库表结构设计
第 1-8 条, 共 8 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
goods_id | int(11) | 0 | 否 | 商品id | 无索引 | 0 |
price | decimal(10,2) | 0.00 | 否 | 销售价格 | 普通索引 | 0.00 |
inventory | int(10) | 0 | 否 | 库存 | 无索引 | 0 |
weight | decimal(10,2) unsigned | 0.00 | 否 | 重量(kg) | 无索引 | 0.00 |
coding | char(80) | 否 | 编码 | 无索引 | ||
barcode | char(80) | 否 | 条形码 | 无索引 | ||
original_price | decimal(10,2) | 0.00 | 否 | 原价 | 无索引 | 0.00 |
extends | longtext | 是 | 扩展数据(json格式存储) | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:ShopXO商城-商品规格基础:https://open.yesapi.cn/tablelist/yesapi_shopxo_s_goods_spec_base.html
-- 数据库大全:ShopXO商城-商品规格基础
-- 来源:YesApi.cn
CREATE TABLE `yesapi_shopxo_s_goods_spec_base` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`goods_id` int(11) NULL DEFAULT '0' COMMENT '商品id',
`price` decimal(10,2) NULL DEFAULT '0.00' COMMENT '销售价格',
`inventory` int(10) NULL DEFAULT '0' COMMENT '库存',
`weight` decimal(10,2) unsigned NULL DEFAULT '0.00' COMMENT '重量(kg) ',
`coding` char(80) NULL COMMENT '编码',
`barcode` char(80) NULL COMMENT '条形码',
`original_price` decimal(10,2) NULL DEFAULT '0.00' COMMENT '原价',
`extends` longtext NULL COMMENT '扩展数据(json格式存储)',
KEY `price` (`price`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'ShopXO商城-商品规格基础';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 ShopXO商城-手机 - 用户中心导航