+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_wp_terms:/tablelist/okayapi_wp_terms.html


-- MySQL Table okayapi_wp_terms
-- From: OkayAPI.com
CREATE TABLE `okayapi_wp_terms` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `term_id` bigint(20) NOT NULL COMMENT '',
    `okayapi_wp_terms_name` varchar(200) NOT NULL COMMENT '',
    `slug` varchar(200) NOT NULL COMMENT '',
    `term_group` bigint(10) NOT NULL DEFAULT '0' COMMENT '',
    KEY `term_id` (`term_id`),
    KEY `okayapi_wp_terms_name` (`okayapi_wp_terms_name`),
    KEY `slug` (`slug`),
    KEY `term_group` (`term_group`),
    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-4 of 4 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
term_idbigint(20)
okayapi_wp_terms_namevarchar(200)Normal Index
slugvarchar(200)Normal Index
term_groupbigint(10)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_relationships

MySQL Table Design okayapi_wp_term_taxonomy

MySQL Table Design okayapi_wp_termmeta

MySQL Table Design okayapi_wp_usermeta

MySQL Table Design okayapi_wp_users

TOP ↑