MySQL数据库表结构设计
第 1-3 条, 共 3 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
client_order_id | bigint(20) | 是 | 普通索引 | |||
status | varchar(20) | 是 | 无索引 | |||
notes | text | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:主机销售-客户订单状态:https://open.yesapi.cn/tablelist/yesapi_box_client_order_status.html
-- 数据库大全:主机销售-客户订单状态
-- 来源:YesApi.cn
CREATE TABLE `yesapi_box_client_order_status` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`client_order_id` bigint(20) NULL COMMENT '',
`status` varchar(20) NULL COMMENT '',
`notes` text NULL COMMENT '',
KEY `client_order_id` (`client_order_id`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '主机销售-客户订单状态';
复制后,到数据库执行,即可创建此数据库表。