+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_response:/tablelist/okayapi_response.html


-- MySQL Table okayapi_response
-- From: OkayAPI.com
CREATE TABLE `okayapi_response` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `method` varchar(10) NULL DEFAULT 'GET' COMMENT '方法',
    `model` varchar(20) NULL COMMENT '表名,table是SQL关键词不能用',
    `structure` varchar(100) NULL COMMENT '结构',
    `detail` varchar(10000) NULL COMMENT '详细说明',
    `date` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建日期',
    KEY `method` (`method`),
    KEY `model` (`model`),
    KEY `structure` (`structure`),
    KEY `detail` (`detail`),
    KEY `date` (`date`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'web开发-服务器响应表';

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
methodvarchar(10)GET方法GET
modelvarchar(20)表名,table是SQL关键词不能用
structurevarchar(100)结构
detailvarchar(10000)详细说明
datetimestampCURRENT_TIMESTAMP创建日期CURRENT_TIMESTAMP

Guess You Like

MySQL Table Design okayapi_seo_article

MySQL Table Design okayapi_article_ad

MySQL Table Design okayapi_article_cate

MySQL Table Design okayapi_article_tag

MySQL Table Design okayapi_article_map

MySQL Table Design okayapi_access

MySQL Table Design okayapi_comment

MySQL Table Design okayapi_document

MySQL Table Design okayapi_function

MySQL Table Design okayapi_login

MySQL Table Design okayapi_moment

MySQL Table Design okayapi_praise

MySQL Table Design okayapi_request

MySQL Table Design okayapi_test_record

MySQL Table Design okayapi_verify

MySQL Table Design okayapi_apijson_privacy

MySQL Table Design okayapi_apijson_user

TOP ↑