+ 立即免费创建此表 返回数据库大全

MySQL建表SQL语句

数据库结构:WordPress-条款关系:https://open.yesapi.cn/tablelist/yesapi_wp_term_relationships.html


-- 数据库大全:WordPress-条款关系
-- 来源:YesApi.cn
CREATE TABLE `yesapi_wp_term_relationships` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `object_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '',
    `term_taxonomy_id` bigint(20) NOT NULL DEFAULT '0' COMMENT '',
    `term_order` int(11) NOT NULL DEFAULT '0' COMMENT '',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'WordPress-条款关系';

复制后,到数据库执行,即可创建此数据库表。


MySQL数据库表结构设计

第 1-3 条, 共 3 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
object_idbigint(20)0无索引0
term_taxonomy_idbigint(20)0无索引0
term_orderint(11)0无索引0

猜你喜欢

MySQL数据库设计 WordPress-评论信息

MySQL数据库设计 WordPress-评论

MySQL数据库设计 WordPress-链接

MySQL数据库设计 WordPress-配置

MySQL数据库设计 WordPress-文章信息

MySQL数据库设计 WordPress-文章

MySQL数据库设计 WordPress-条款分类

MySQL数据库设计 WordPress-条款信息表

MySQL数据库设计 WordPress-条款表

MySQL数据库设计 WordPress-用户信息表

MySQL数据库设计 WordPress-用户表



回到顶部 ↑