MySQL数据库表结构设计
第 1-24 条, 共 24 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
type | varchar(30) | 是 | free, once, recurrent | 无索引 | ||
once_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
once_setup_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
w_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
m_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
q_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
b_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
a_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
bia_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
tria_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
w_setup_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
m_setup_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
q_setup_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
b_setup_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
a_setup_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
bia_setup_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
tria_setup_price | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
w_enabled | tinyint(1) | 1 | 是 | 无索引 | 1 | |
m_enabled | tinyint(1) | 1 | 是 | 无索引 | 1 | |
q_enabled | tinyint(1) | 1 | 是 | 无索引 | 1 | |
b_enabled | tinyint(1) | 1 | 是 | 无索引 | 1 | |
a_enabled | tinyint(1) | 1 | 是 | 无索引 | 1 | |
bia_enabled | tinyint(1) | 1 | 是 | 无索引 | 1 | |
tria_enabled | tinyint(1) | 1 | 是 | 无索引 | 1 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:主机销售-产品付款:https://open.yesapi.cn/tablelist/yesapi_box_product_payment.html
-- 数据库大全:主机销售-产品付款
-- 来源:YesApi.cn
CREATE TABLE `yesapi_box_product_payment` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(30) NULL COMMENT 'free, once, recurrent',
`once_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`once_setup_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`w_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`m_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`q_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`b_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`a_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`bia_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`tria_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`w_setup_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`m_setup_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`q_setup_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`b_setup_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`a_setup_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`bia_setup_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`tria_setup_price` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`w_enabled` tinyint(1) NULL DEFAULT '1' COMMENT '',
`m_enabled` tinyint(1) NULL DEFAULT '1' COMMENT '',
`q_enabled` tinyint(1) NULL DEFAULT '1' COMMENT '',
`b_enabled` tinyint(1) NULL DEFAULT '1' COMMENT '',
`a_enabled` tinyint(1) NULL DEFAULT '1' COMMENT '',
`bia_enabled` tinyint(1) NULL DEFAULT '1' COMMENT '',
`tria_enabled` tinyint(1) NULL DEFAULT '1' COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '主机销售-产品付款';
复制后,到数据库执行,即可创建此数据库表。