+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_dberp_customer_category:/tablelist/okayapi_dberp_customer_category.html


-- MySQL Table okayapi_dberp_customer_category
-- From: OkayAPI.com
CREATE TABLE `okayapi_dberp_customer_category` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `customer_category_code` varchar(30) NOT NULL COMMENT '',
    `customer_category_name` varchar(100) NOT NULL COMMENT '',
    `customer_category_sort` int(11) NOT NULL DEFAULT '255' COMMENT '',
    `admin_id` int(11) NOT NULL COMMENT '',
    KEY `customer_category_code` (`customer_category_code`),
    KEY `customer_category_name` (`customer_category_name`),
    KEY `customer_category_sort` (`customer_category_sort`),
    KEY `admin_id` (`admin_id`),
    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
customer_category_codevarchar(30)
customer_category_namevarchar(100)
customer_category_sortint(11)255255
admin_idint(11)

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_finance_payable

TOP ↑