MySQL数据库表结构设计
第 1-6 条, 共 6 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
country_id | int(11) | 否 | 无索引 | |||
iso_code_2 | varchar(2) | 否 | 无索引 | |||
iso_code_3 | varchar(3) | 否 | 无索引 | |||
address_format | text | 否 | 无索引 | |||
postcode_required | tinyint(1) | 否 | 无索引 | |||
yesapi_openant_country_status | tinyint(1) | 1 | 否 | 无索引 | 1 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:openant电商-国家:https://open.yesapi.cn/tablelist/yesapi_openant_country.html
-- 数据库大全:openant电商-国家
-- 来源:YesApi.cn
CREATE TABLE `yesapi_openant_country` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`country_id` int(11) NOT NULL COMMENT '',
`iso_code_2` varchar(2) NOT NULL COMMENT '',
`iso_code_3` varchar(3) NOT NULL COMMENT '',
`address_format` text NOT NULL COMMENT '',
`postcode_required` tinyint(1) NOT NULL COMMENT '',
`yesapi_openant_country_status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'openant电商-国家';
复制后,到数据库执行,即可创建此数据库表。