MySQL数据库表结构设计
第 1-18 条, 共 18 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
uid | int(11) | 否 | 操作者 | 无索引 | ||
yesapi_zhiguo_ocenter_mall_goods_name | varchar(32) | 否 | 商品名称 | 无索引 | ||
url | varchar(200) | 否 | 商品的外链 | 无索引 | ||
yesapi_zhiguo_ocenter_mall_goods_status | tinyint(4) | 否 | 商品状态 | 无索引 | ||
price | decimal(10,2) | 0.00 | 否 | 商品价格 | 无索引 | 0.00 |
cate | int(11) | 否 | 商品类型 | 普通索引 | ||
size | varchar(200) | 否 | 商品尺寸 | 无索引 | ||
color | varchar(200) | 否 | 商品颜色 | 无索引 | ||
introduce | text | 否 | 商品介绍 | 无索引 | ||
pictures | varchar(64) | 否 | 商品图片 | 无索引 | ||
banner | int(11) | 否 | 商品详情页图 | 无索引 | ||
is_hot | tinyint(4) | 0 | 否 | 是否热门 | 无索引 | 0 |
views | int(11) | 0 | 否 | 阅读量 | 无索引 | 0 |
praise | int(11) | 0 | 是 | 被点赞数目 | 无索引 | 0 |
yesapi_zhiguo_ocenter_mall_goods_show | text | 否 | 商品展示部分 | 无索引 | ||
sales | int(11) | 0 | 否 | 销量 | 无索引 | 0 |
is_index | int(11) | 0 | 否 | 是否是首页商品 | 无索引 | 0 |
profit | decimal(10,2) | 0.00 | 否 | 该商品的收益 | 无索引 | 0.00 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:智果内容付费-商城商品:https://open.yesapi.cn/tablelist/yesapi_zhiguo_ocenter_mall_goods.html
-- 数据库大全:智果内容付费-商城商品
-- 来源:YesApi.cn
CREATE TABLE `yesapi_zhiguo_ocenter_mall_goods` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`uid` int(11) NOT NULL COMMENT '操作者',
`yesapi_zhiguo_ocenter_mall_goods_name` varchar(32) NOT NULL COMMENT '商品名称',
`url` varchar(200) NOT NULL COMMENT '商品的外链',
`yesapi_zhiguo_ocenter_mall_goods_status` tinyint(4) NOT NULL COMMENT '商品状态',
`price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '商品价格',
`cate` int(11) NOT NULL COMMENT '商品类型',
`size` varchar(200) NOT NULL COMMENT '商品尺寸',
`color` varchar(200) NOT NULL COMMENT '商品颜色',
`introduce` text NOT NULL COMMENT '商品介绍',
`pictures` varchar(64) NOT NULL COMMENT '商品图片',
`banner` int(11) NOT NULL COMMENT '商品详情页图',
`is_hot` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否热门',
`views` int(11) NOT NULL DEFAULT '0' COMMENT '阅读量',
`praise` int(11) NOT NULL DEFAULT '0' COMMENT '被点赞数目',
`yesapi_zhiguo_ocenter_mall_goods_show` text NOT NULL COMMENT '商品展示部分',
`sales` int(11) NOT NULL DEFAULT '0' COMMENT '销量',
`is_index` int(11) NOT NULL DEFAULT '0' COMMENT '是否是首页商品',
`profit` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '该商品的收益',
KEY `cate` (`cate`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '智果内容付费-商城商品';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 智果内容付费-权限组与分类的对应关系表