MySQL数据库表结构设计
第 1-11 条, 共 11 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
details_id | int(10) | 否 | 自增id | 无索引 | ||
order_id | int(10) | 0 | 是 | 订单ID | 无索引 | 0 |
users_id | int(10) | 0 | 否 | 会员id | 普通索引 | 0 |
product_id | int(10) | 0 | 否 | 产品id | 无索引 | 0 |
product_name | varchar(100) | 是 | 产品名称 | 无索引 | ||
num | int(10) | 0 | 是 | 单个产品数量 | 无索引 | 0 |
yesapi_ey_shop_order_details_data | text | 是 | 序列化额外数据 | 无索引 | ||
product_price | decimal(10,2) | 0.00 | 否 | 产品单价 | 无索引 | 0.00 |
prom_type | tinyint(1) | 0 | 是 | 产品类型:0普通产品,1虚拟产品 | 无索引 | 0 |
litpic | varchar(500) | 是 | 封面图片 | 无索引 | ||
lang | varchar(30) | cn | 否 | 语言标识 | 无索引 | cn |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:企业内容管理系统-订单详情表:https://open.yesapi.cn/tablelist/yesapi_ey_shop_order_details.html
-- 数据库大全:企业内容管理系统-订单详情表
-- 来源:YesApi.cn
CREATE TABLE `yesapi_ey_shop_order_details` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`details_id` int(10) NOT NULL COMMENT '自增id',
`order_id` int(10) NOT NULL DEFAULT '0' COMMENT '订单ID',
`users_id` int(10) NOT NULL DEFAULT '0' COMMENT '会员id',
`product_id` int(10) NOT NULL DEFAULT '0' COMMENT '产品id',
`product_name` varchar(100) NOT NULL COMMENT '产品名称',
`num` int(10) NOT NULL DEFAULT '0' COMMENT '单个产品数量',
`yesapi_ey_shop_order_details_data` text NOT NULL COMMENT '序列化额外数据',
`product_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '产品单价',
`prom_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '产品类型:0普通产品,1虚拟产品',
`litpic` varchar(500) NOT NULL COMMENT '封面图片',
`lang` varchar(30) NOT NULL DEFAULT 'cn' COMMENT '语言标识',
KEY `users_id` (`users_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '企业内容管理系统-订单详情表';
复制后,到数据库执行,即可创建此数据库表。
猜你喜欢
MySQL数据库设计 企业内容管理系统-栏目与自定义字段绑定表