+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_mobile:/tablelist/okayapi_mobile.html


-- MySQL Table okayapi_mobile
-- From: OkayAPI.com
CREATE TABLE `okayapi_mobile` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `mobile` varchar(11) NULL COMMENT '手机号码(中国)',
    `mobile_status` tinyint(3) NULL DEFAULT '0' COMMENT '手机号状态,自定义,0~100',
    KEY `mobile` (`mobile`),
    KEY `mobile_status` (`mobile_status`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '手机号码库';

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


MySQL database table structure design

Displaying 1-2 of 2 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
mobilevarchar(11)手机号码(中国)Unique Index13800138000
mobile_statustinyint(3)0手机号状态,自定义,0~1000

Guess You Like

MySQL Table Design okayapi_qq

MySQL Table Design okayapi_rank

MySQL Table Design okayapi_moment

MySQL Table Design okayapi_user

MySQL Table Design okayapi_friend

MySQL Table Design okayapi_qq_login

MySQL Table Design okayapi_lend_book

MySQL Table Design okayapi_charter_car_info

MySQL Table Design okayapi_charter_car_book

TOP ↑