+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_dberp_region:/tablelist/okayapi_dberp_region.html


-- MySQL Table okayapi_dberp_region
-- From: OkayAPI.com
CREATE TABLE `okayapi_dberp_region` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `region_name` varchar(50) NULL COMMENT '',
    `region_top_id` int(11) NULL DEFAULT '0' COMMENT '',
    `region_sort` int(11) NULL DEFAULT '255' COMMENT '',
    `region_path` varchar(100) NULL COMMENT '',
    KEY `region_name` (`region_name`),
    KEY `region_top_id` (`region_top_id`),
    KEY `region_sort` (`region_sort`),
    KEY `region_path` (`region_path`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'DBErp进销存-地区数据表';

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
region_namevarchar(50)
region_top_idint(11)00
region_sortint(11)255255
region_pathvarchar(100)

Guess You Like

MySQL Table Design okayapi_smpss_admin

MySQL Table Design okayapi_smpss_category

MySQL Table Design okayapi_smpss_goods

MySQL Table Design okayapi_smpss_group

MySQL Table Design okayapi_smpss_log

MySQL Table Design okayapi_smpss_mbgroup

MySQL Table Design okayapi_smpss_member

MySQL Table Design okayapi_smpss_purchase

MySQL Table Design okayapi_smpss_region

MySQL Table Design okayapi_smpss_sales

MySQL Table Design okayapi_smpss_system

MySQL Table Design okayapi_smpss_tempsales

MySQL Table Design okayapi_dberp_accounts_receivable

MySQL Table Design okayapi_dberp_accounts_receivable_log

MySQL Table Design okayapi_dberp_admin

MySQL Table Design okayapi_dberp_admin_group

MySQL Table Design okayapi_dberp_app

MySQL Table Design okayapi_dberp_brand

MySQL Table Design okayapi_dberp_customer

MySQL Table Design okayapi_dberp_customer_category

TOP ↑