MySQL数据库表结构设计
第 1-8 条, 共 8 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
goods_name | varchar(1024) | 否 | 商品名称 | 无索引 | Apple iPhone 8 Plus 64GB 红色特别版 | |
goods_desc | varchar(2024) | 是 | 商品描述 | 无索引 | Apple iPhone 8 Plus 64GB 红色特别版 移动联通电信4G手机 | |
goods_price | int(10) | 9999999 | 是 | 商品价格,单位为:分 | 无索引 | 549900(表示:¥5499.00) |
goods_maket_price | int(10) | 9999999 | 是 | 商品市场价,即原价,单位为:分 | 无索引 | 549900(表示:¥5499.00) |
goods_stock | int(10) | 0 | 是 | 商品库存 | 无索引 | 10 |
goods_img | varchar(255) | 是 | 商品图片链接 | 无索引 | http://admin.okayapi.com/images/model/m16.jpg | |
goods_sell_time | datetime | 是 | 商品上架时间,开始售卖时间 | 无索引 | 2018-08-08 08:08:08 | |
goods_status | tinyint(3) | 1 | 是 | 商品状态,0待审核,1正常售卖,2已下架,3已售罄 | 无索引 | 1 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:商品表:https://open.yesapi.cn/tablelist/okayapi_goods.html
-- 数据库大全:商品表
-- 来源:YesApi.cn
CREATE TABLE `okayapi_goods` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`goods_name` varchar(1024) NULL COMMENT '商品名称',
`goods_desc` varchar(2024) NULL COMMENT '商品描述',
`goods_price` int(10) NULL DEFAULT '9999999' COMMENT '商品价格,单位为:分',
`goods_maket_price` int(10) NULL DEFAULT '9999999' COMMENT '商品市场价,即原价,单位为:分',
`goods_stock` int(10) NULL DEFAULT '0' COMMENT '商品库存',
`goods_img` varchar(255) NULL COMMENT '商品图片链接',
`goods_sell_time` datetime NULL COMMENT '商品上架时间,开始售卖时间',
`goods_status` tinyint(3) NULL DEFAULT '1' COMMENT '商品状态,0待审核,1正常售卖,2已下架,3已售罄',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '商品表';
复制后,到数据库执行,即可创建此数据库表。