MySQL数据库表结构设计
第 1-8 条, 共 8 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
shop_id | int(10) | 否 | 该订单所属哪家店 | 无索引 | ||
order_number | varchar(20) | 否 | 订单编号 | 无索引 | ||
product_info | text | 否 | 商品信息 | 无索引 | ||
pay_time | int(10) | 0 | 否 | 付款时间 | 无索引 | 0 |
yesapi_dinner_liv_food_order_status | tinyint(1) | 1 | 否 | 订单状态 | 无索引 | 1 |
food_user_id | int(10) | 否 | 用户id | 无索引 | ||
total_price | float(7,1) unsigned | 0.0 | 否 | 无索引 | 0.0 | |
create_time | int(10) | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:订餐-订单:https://open.yesapi.cn/tablelist/yesapi_dinner_liv_food_order.html
-- 数据库大全:订餐-订单
-- 来源:YesApi.cn
CREATE TABLE `yesapi_dinner_liv_food_order` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`shop_id` int(10) NOT NULL COMMENT '该订单所属哪家店',
`order_number` varchar(20) NOT NULL COMMENT '订单编号',
`product_info` text NOT NULL COMMENT '商品信息',
`pay_time` int(10) NOT NULL DEFAULT '0' COMMENT '付款时间',
`yesapi_dinner_liv_food_order_status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '订单状态',
`food_user_id` int(10) NOT NULL COMMENT '用户id',
`total_price` float(7,1) unsigned NOT NULL DEFAULT '0.0' COMMENT '',
`create_time` int(10) NOT NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '订餐-订单';
复制后,到数据库执行,即可创建此数据库表。