+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_zd_wiki_page_zan:/tablelist/okayapi_zd_wiki_page_zan.html


-- MySQL Table okayapi_zd_wiki_page_zan
-- From: OkayAPI.com
CREATE TABLE `okayapi_zd_wiki_page_zan` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `page_id` bigint(20) NULL COMMENT '页面ID',
    `comment_id` bigint(20) NULL COMMENT '评论ID',
    `create_user_id` bigint(20) NULL COMMENT '创建人ID',
    `create_user_name` varchar(20) NULL COMMENT '创建人名字',
    `yn` tinyint(4) NULL COMMENT '是否有效 0=无效 1=有效',
    KEY `page_id` (`page_id`),
    KEY `comment_id` (`comment_id`),
    KEY `create_user_id` (`create_user_id`),
    KEY `create_user_name` (`create_user_name`),
    KEY `yn` (`yn`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'WIKI-WIKI点赞';

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


MySQL database table structure design

Displaying 1-5 of 5 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
page_idbigint(20)页面ID
comment_idbigint(20)评论ID
create_user_idbigint(20)创建人ID
create_user_namevarchar(20)创建人名字
yntinyint(4)是否有效 0=无效 1=有效

Guess You Like

MySQL Table Design okayapi_zd_auth_info

MySQL Table Design okayapi_zd_user_auth

MySQL Table Design okayapi_zd_user_info

MySQL Table Design okayapi_zd_wiki_page

MySQL Table Design okayapi_zd_wiki_page_comment

MySQL Table Design okayapi_zd_wiki_page_content

MySQL Table Design okayapi_zd_wiki_page_file

MySQL Table Design okayapi_zd_wiki_page_history

MySQL Table Design okayapi_zd_wiki_space

MySQL Table Design okayapi_zd_zyplayer_storage

MySQL Table Design okayapi_zd_db_favorite

MySQL Table Design okayapi_zd_db_history

TOP ↑