MySQL数据库表结构设计
第 1-9 条, 共 9 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
tld_registrar_id | bigint(20) | 是 | 普通索引 | |||
tld | varchar(15) | 是 | 唯一索引 | |||
price_registration | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
price_renew | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
price_transfer | decimal(18,2) | 0.00 | 是 | 无索引 | 0.00 | |
allow_register | tinyint(1) | 是 | 无索引 | |||
allow_transfer | tinyint(1) | 是 | 无索引 | |||
active | tinyint(1) | 1 | 是 | 无索引 | 1 | |
min_years | tinyint(4) | 是 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:主机销售-晶体管:https://open.yesapi.cn/tablelist/yesapi_box_tld.html
-- 数据库大全:主机销售-晶体管
-- 来源:YesApi.cn
CREATE TABLE `yesapi_box_tld` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`tld_registrar_id` bigint(20) NULL COMMENT '',
`tld` varchar(15) NULL COMMENT '',
`price_registration` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`price_renew` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`price_transfer` decimal(18,2) NULL DEFAULT '0.00' COMMENT '',
`allow_register` tinyint(1) NULL COMMENT '',
`allow_transfer` tinyint(1) NULL COMMENT '',
`active` tinyint(1) NULL DEFAULT '1' COMMENT '',
`min_years` tinyint(4) NULL COMMENT '',
KEY `tld_registrar_id` (`tld_registrar_id`),
UNIQUE KEY `tld` (`tld`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '主机销售-晶体管';
复制后,到数据库执行,即可创建此数据库表。