MySQL数据库表结构设计
第 1-10 条, 共 10 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
goods_name | varchar(255) | 是 | 商品名称 | 无索引 | ||
goods_desc | text | 是 | 商品详细描述 | 无索引 | ||
goods_title | varchar(500) | 是 | 一句话卖点 | 无索引 | ||
goods_price | int(11) | 0 | 是 | 商品价格(分) | 无索引 | 0 |
goods_market_price | int(11) | 0 | 是 | 商品市场价格(分) | 无索引 | 0 |
goods_status | tinyint(4) | 0 | 是 | 商品状态 | 无索引 | 0 |
goods_tag | varchar(200) | 是 | 商品标签 | 无索引 | ||
goods_img | varchar(255) | 是 | 商品图片 | 无索引 | ||
view_times | int(11) | 0 | 是 | 人气 | 无索引 | 0 |
like_times | int(11) | 0 | 是 | 收藏数量 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:小白商城商品表:https://open.yesapi.cn/tablelist/yesapi_shop_goods.html
-- 数据库大全:小白商城商品表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_shop_goods` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`goods_name` varchar(255) NULL COMMENT '商品名称',
`goods_desc` text NULL COMMENT '商品详细描述',
`goods_title` varchar(500) NULL COMMENT '一句话卖点',
`goods_price` int(11) NULL DEFAULT '0' COMMENT '商品价格(分)',
`goods_market_price` int(11) NULL DEFAULT '0' COMMENT '商品市场价格(分)',
`goods_status` tinyint(4) NULL DEFAULT '0' COMMENT '商品状态',
`goods_tag` varchar(200) NULL COMMENT '商品标签',
`goods_img` varchar(255) NULL COMMENT '商品图片',
`view_times` int(11) NULL DEFAULT '0' COMMENT '人气',
`like_times` int(11) NULL DEFAULT '0' COMMENT '收藏数量',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '小白商城商品表';
复制后,到数据库执行,即可创建此数据库表。