MySQL数据库表结构设计
第 1-11 条, 共 11 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
parent_id | bigint(20) | 是 | 上机分类的编号:0表示一级分类 | 无索引 | ||
yesapi_mall_pms_product_category_name | varchar(64) | 是 | 无索引 | |||
yesapi_mall_pms_product_category_level | int(1) | 是 | 分类级别:0->1级;1->2级 | 无索引 | ||
product_count | int(11) | 是 | 无索引 | |||
product_unit | varchar(64) | 是 | 无索引 | |||
nav_status | int(1) | 是 | 是否显示在导航栏:0->不显示;1->显示 | 无索引 | ||
show_status | int(1) | 是 | 显示状态:0->不显示;1->显示 | 无索引 | ||
sort | int(11) | 是 | 无索引 | |||
icon | varchar(255) | 是 | 图标 | 无索引 | ||
keywords | varchar(255) | 是 | 无索引 | |||
description | text | 是 | 描述 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:电商-产品分类:https://open.yesapi.cn/tablelist/yesapi_mall_pms_product_category.html
-- 数据库大全:电商-产品分类
-- 来源:YesApi.cn
CREATE TABLE `yesapi_mall_pms_product_category` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` bigint(20) NULL COMMENT '上机分类的编号:0表示一级分类',
`yesapi_mall_pms_product_category_name` varchar(64) NULL COMMENT '',
`yesapi_mall_pms_product_category_level` int(1) NULL COMMENT '分类级别:0->1级;1->2级',
`product_count` int(11) NULL COMMENT '',
`product_unit` varchar(64) NULL COMMENT '',
`nav_status` int(1) NULL COMMENT '是否显示在导航栏:0->不显示;1->显示',
`show_status` int(1) NULL COMMENT '显示状态:0->不显示;1->显示',
`sort` int(11) NULL COMMENT '',
`icon` varchar(255) NULL COMMENT '图标',
`keywords` varchar(255) NULL COMMENT '',
`description` text NULL COMMENT '描述',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '电商-产品分类';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 ShopXO商城-手机 - 用户中心导航