MySQL数据库表结构设计
第 1-6 条, 共 6 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
term_taxonomy_id | bigint(20) | 否 | 无索引 | |||
term_id | bigint(20) | 0 | 否 | 普通索引 | 0 | |
taxonomy | varchar(32) | 否 | 普通索引 | |||
description | longtext | 否 | 无索引 | |||
parent | bigint(20) | 0 | 否 | 无索引 | 0 | |
count | bigint(20) | 0 | 否 | 无索引 | 0 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:WordPress-条款分类:https://open.yesapi.cn/tablelist/yesapi_wp_term_taxonomy.html
-- 数据库大全:WordPress-条款分类
-- 来源:YesApi.cn
CREATE TABLE `yesapi_wp_term_taxonomy` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_taxonomy_id` bigint(20) NOT NULL COMMENT '',
`term_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '',
`taxonomy` varchar(32) NOT NULL COMMENT '',
`description` longtext NOT NULL COMMENT '',
`parent` bigint(20) NOT NULL DEFAULT '0' COMMENT '',
`count` bigint(20) NOT NULL DEFAULT '0' COMMENT '',
KEY `term_id` (`term_id`),
KEY `taxonomy` (`taxonomy`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'WordPress-条款分类';
复制后,到数据库执行,即可创建此数据库表。