+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_ucenter:/tablelist/okayapi_ucenter.html


-- MySQL Table okayapi_ucenter
-- From: OkayAPI.com
CREATE TABLE `okayapi_ucenter` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `uid` int(11) NULL DEFAULT '0' COMMENT '',
    `uc_uid` int(11) NULL DEFAULT '0' COMMENT '',
    `username` varchar(255) NULL COMMENT '',
    `email` varchar(255) NULL COMMENT '',
    KEY `uid` (`uid`),
    KEY `uc_uid` (`uc_uid`),
    KEY `username` (`username`),
    KEY `email` (`email`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'UCenter登录';

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
uidint(11)00
uc_uidint(11)00
usernamevarchar(255)
emailvarchar(255)

Guess You Like

MySQL Table Design okayapi_question

MySQL Table Design okayapi_report

MySQL Table Design okayapi_topic

MySQL Table Design okayapi_social_users

MySQL Table Design okayapi_sina_weibo

TOP ↑