+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_dberp_admin_group:/tablelist/okayapi_dberp_admin_group.html


-- MySQL Table okayapi_dberp_admin_group
-- From: OkayAPI.com
CREATE TABLE `okayapi_dberp_admin_group` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `admin_group_name` varchar(200) NULL COMMENT '',
    `admin_group_purview` text NULL COMMENT '',
    KEY `admin_group_name` (`admin_group_name`),
    KEY `admin_group_purview` (`admin_group_purview`),
    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-2 of 2 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
admin_group_namevarchar(200)
admin_group_purviewtext

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_app

MySQL Table Design okayapi_dberp_brand

MySQL Table Design okayapi_dberp_customer

MySQL Table Design okayapi_dberp_customer_category

MySQL Table Design okayapi_dberp_finance_payable

TOP ↑