MySQL数据库表结构设计
第 1-14 条, 共 14 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
pid | int(11) | 0 | 否 | 父id | 普通索引 | 0 |
icon | char(255) | 否 | icon图标 | 无索引 | ||
yesapi_shopxo_s_goods_category_name | char(60) | 否 | 名称 | 无索引 | ||
vice_name | char(80) | 否 | 副标题 | 无索引 | ||
yesapi_shopxo_s_goods_category_describe | char(255) | 否 | 描述 | 无索引 | ||
bg_color | char(30) | 否 | css背景色值 | 无索引 | ||
big_images | char(255) | 否 | 大图片 | 无索引 | ||
is_home_recommended | tinyint(2) | 0 | 否 | 是否首页推荐(0否, 1是) | 无索引 | 0 |
sort | tinyint(3) | 0 | 否 | 排序 | 普通索引 | 0 |
is_enable | tinyint(1) | 1 | 否 | 是否启用(0否,1是) | 普通索引 | 1 |
seo_title | char(100) | 否 | SEO标题 | 无索引 | ||
seo_keywords | char(130) | 否 | SEO关键字 | 无索引 | ||
seo_desc | char(230) | 否 | SEO描述 | 无索引 | ||
upd_time | int(11) | 0 | 否 | 更新时间 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:ShopXO商城-商品分类:https://open.yesapi.cn/tablelist/yesapi_shopxo_s_goods_category.html
-- 数据库大全:ShopXO商城-商品分类
-- 来源:YesApi.cn
CREATE TABLE `yesapi_shopxo_s_goods_category` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`pid` int(11) NOT NULL DEFAULT '0' COMMENT '父id',
`icon` char(255) NOT NULL COMMENT 'icon图标',
`yesapi_shopxo_s_goods_category_name` char(60) NOT NULL COMMENT '名称',
`vice_name` char(80) NOT NULL COMMENT '副标题',
`yesapi_shopxo_s_goods_category_describe` char(255) NOT NULL COMMENT '描述',
`bg_color` char(30) NOT NULL COMMENT 'css背景色值',
`big_images` char(255) NOT NULL COMMENT '大图片',
`is_home_recommended` tinyint(2) NOT NULL DEFAULT '0' COMMENT '是否首页推荐(0否, 1是)',
`sort` tinyint(3) NOT NULL DEFAULT '0' COMMENT '排序',
`is_enable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否启用(0否,1是)',
`seo_title` char(100) NOT NULL COMMENT 'SEO标题',
`seo_keywords` char(130) NOT NULL COMMENT 'SEO关键字',
`seo_desc` char(230) NOT NULL COMMENT 'SEO描述',
`upd_time` int(11) NOT NULL DEFAULT '0' COMMENT '更新时间',
KEY `pid` (`pid`),
KEY `sort` (`sort`),
KEY `is_enable` (`is_enable`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'ShopXO商城-商品分类';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 ShopXO商城-手机 - 用户中心导航