+ 立即免费创建此表 返回数据库大全

MySQL建表SQL语句

数据库结构:openant电商-历史订单:https://open.yesapi.cn/tablelist/yesapi_openant_order_history.html


-- 数据库大全:openant电商-历史订单
-- 来源:YesApi.cn
CREATE TABLE `yesapi_openant_order_history` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `order_history_id` int(11) NOT NULL COMMENT '',
    `order_id` int(11) NOT NULL COMMENT '',
    `order_status_id` int(11) NOT NULL COMMENT '',
    `notify` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
    `yesapi_openant_order_history_comment` text NOT NULL COMMENT '',
    `date_added` datetime NOT NULL COMMENT '',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'openant电商-历史订单';

复制后,到数据库执行,即可创建此数据库表。


MySQL数据库表结构设计

第 1-6 条, 共 6 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
order_history_idint(11)无索引
order_idint(11)无索引
order_status_idint(11)无索引
notifytinyint(1)0无索引0
yesapi_openant_order_history_commenttext无索引
date_addeddatetime无索引

猜你喜欢

MySQL数据库设计 商品表

MySQL数据库设计 商品评价

MySQL数据库设计 openant电商-

MySQL数据库设计 openant电商-市场提醒

MySQL数据库设计 openant电商-市场提醒描述

MySQL数据库设计 openant电商-API接口

MySQL数据库设计 openant电商-属性

MySQL数据库设计 openant电商-属性分组

MySQL数据库设计 openant电商-属性分组

MySQL数据库设计 openant电商-属性分组描述

MySQL数据库设计 openant电商-顶部

MySQL数据库设计 openant电商-顶部大图

MySQL数据库设计 openant电商-顶部图片描述

MySQL数据库设计 openant电商-条形码

MySQL数据库设计 openant电商-条形码描述

MySQL数据库设计 openant电商-论坛活动

MySQL数据库设计 openant电商-论坛讨论

MySQL数据库设计 openant电商-论坛讨论描述

MySQL数据库设计 openant电商-论坛版块

MySQL数据库设计 openant电商-论坛版块说明



回到顶部 ↑