+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_wp_term_relationships:/tablelist/okayapi_wp_term_relationships.html


-- MySQL Table okayapi_wp_term_relationships
-- From: OkayAPI.com
CREATE TABLE `okayapi_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 '',
    KEY `object_id` (`object_id`),
    KEY `term_taxonomy_id` (`term_taxonomy_id`),
    KEY `term_order` (`term_order`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'WordPress-条款关系';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-3 of 3 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
object_idbigint(20)00
term_taxonomy_idbigint(20)00
term_orderint(11)00

Guess You Like

MySQL Table Design okayapi_wp_commentmeta

MySQL Table Design okayapi_wp_comments

MySQL Table Design okayapi_wp_links

MySQL Table Design okayapi_wp_options

MySQL Table Design okayapi_wp_postmeta

MySQL Table Design okayapi_wp_posts

MySQL Table Design okayapi_wp_term_taxonomy

MySQL Table Design okayapi_wp_termmeta

MySQL Table Design okayapi_wp_terms

MySQL Table Design okayapi_wp_usermeta

MySQL Table Design okayapi_wp_users

TOP ↑