+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_jieqi_system_registerip:/tablelist/okayapi_jieqi_system_registerip.html


-- MySQL Table okayapi_jieqi_system_registerip
-- From: OkayAPI.com
CREATE TABLE `okayapi_jieqi_system_registerip` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `ip` char(15) NOT NULL COMMENT '',
    `regtime` int(11) NOT NULL DEFAULT '0' COMMENT '',
    `count` smallint(6) NOT NULL DEFAULT '0' COMMENT '',
    KEY `ip` (`ip`),
    KEY `regtime` (`regtime`),
    KEY `count` (`count`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'jieqi小说-注册IP';

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
ipchar(15)Normal Index
regtimeint(11)00
countsmallint(6)00

Guess You Like

MySQL Table Design okayapi_xwx_author

MySQL Table Design okayapi_xwx_banner

MySQL Table Design okayapi_xwx_book

MySQL Table Design okayapi_xwx_category

MySQL Table Design okayapi_xwx_chapter

MySQL Table Design okayapi_xwx_tag

MySQL Table Design okayapi_xwx_admin

MySQL Table Design okayapi_xwx_friendship_link

MySQL Table Design okayapi_jieqi_system_adminmenu

MySQL Table Design okayapi_jieqi_system_blockconfigs

MySQL Table Design okayapi_jieqi_system_blocks

MySQL Table Design okayapi_jieqi_system_configs

MySQL Table Design okayapi_jieqi_system_defaultmenu

MySQL Table Design okayapi_jieqi_system_friends

MySQL Table Design okayapi_jieqi_system_groups

MySQL Table Design okayapi_jieqi_system_honors

MySQL Table Design okayapi_jieqi_system_logs

MySQL Table Design okayapi_jieqi_system_mainmenu

MySQL Table Design okayapi_jieqi_system_mblock

MySQL Table Design okayapi_jieqi_system_message

TOP ↑