MySQL数据库表结构设计
第 1-10 条, 共 10 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
user_id | bigint(20) | 是 | 用户ID | 无索引 | ||
goods_id | bigint(20) | 是 | 商品ID | 无索引 | ||
delivery_addr_id | bigint(20) | 是 | 收获地址ID | 无索引 | ||
goods_name | varchar(16) | 是 | 冗余过来的商品名称 | 无索引 | ||
goods_count | int(11) | 0 | 是 | 商品数量 | 无索引 | 0 |
goods_price | decimal(10,2) | 0.00 | 是 | 商品单价 | 无索引 | 0.00 |
order_channel | tinyint(4) | 0 | 是 | 1pc,2android,3ios | 无索引 | 0 |
yesapi_miaosha_order_info_status | tinyint(4) | 0 | 是 | 订单状态,0新建未支付,1已支付,2已发货,3已收货,4已退款,5已完成 | 无索引 | 0 |
create_date | datetime | 是 | 订单的创建时间 | 无索引 | ||
pay_date | datetime | 是 | 支付时间 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:秒杀-秒杀订单信息:https://open.yesapi.cn/tablelist/yesapi_miaosha_order_info.html
-- 数据库大全:秒杀-秒杀订单信息
-- 来源:YesApi.cn
CREATE TABLE `yesapi_miaosha_order_info` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) NULL COMMENT '用户ID',
`goods_id` bigint(20) NULL COMMENT '商品ID',
`delivery_addr_id` bigint(20) NULL COMMENT '收获地址ID',
`goods_name` varchar(16) NULL COMMENT '冗余过来的商品名称',
`goods_count` int(11) NULL DEFAULT '0' COMMENT '商品数量',
`goods_price` decimal(10,2) NULL DEFAULT '0.00' COMMENT '商品单价',
`order_channel` tinyint(4) NULL DEFAULT '0' COMMENT '1pc,2android,3ios',
`yesapi_miaosha_order_info_status` tinyint(4) NULL DEFAULT '0' COMMENT '订单状态,0新建未支付,1已支付,2已发货,3已收货,4已退款,5已完成',
`create_date` datetime NULL COMMENT '订单的创建时间',
`pay_date` datetime NULL COMMENT '支付时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '秒杀-秒杀订单信息';
复制后,到数据库执行,即可创建此数据库表。