MySQL数据库表结构设计
第 1-6 条, 共 6 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
order_total_id | int(10) | 否 | 无索引 | |||
order_id | int(11) | 否 | 无索引 | |||
yesapi_openant_order_total_code | varchar(32) | 否 | 无索引 | |||
title | varchar(255) | 否 | 无索引 | |||
yesapi_openant_order_total_value | decimal(15,4) | 0.0000 | 否 | 无索引 | 0.0000 | |
sort_order | int(3) | 否 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:openant电商-总订单:https://open.yesapi.cn/tablelist/yesapi_openant_order_total.html
-- 数据库大全:openant电商-总订单
-- 来源:YesApi.cn
CREATE TABLE `yesapi_openant_order_total` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_total_id` int(10) NOT NULL COMMENT '',
`order_id` int(11) NOT NULL COMMENT '',
`yesapi_openant_order_total_code` varchar(32) NOT NULL COMMENT '',
`title` varchar(255) NOT NULL COMMENT '',
`yesapi_openant_order_total_value` decimal(15,4) NOT NULL DEFAULT '0.0000' COMMENT '',
`sort_order` int(3) NOT NULL COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'openant电商-总订单';
复制后,到数据库执行,即可创建此数据库表。