+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_jeewms_ba_goods_brand:/tablelist/okayapi_jeewms_ba_goods_brand.html


-- MySQL Table okayapi_jeewms_ba_goods_brand
-- From: OkayAPI.com
CREATE TABLE `okayapi_jeewms_ba_goods_brand` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `update_name` varchar(50) NULL COMMENT '更新人名称',
    `update_by` varchar(50) NULL COMMENT '更新人登录名称',
    `update_date` datetime NULL COMMENT '更新日期',
    `sys_org_code` varchar(50) NULL COMMENT '所属部门',
    `sys_company_code` varchar(50) NULL COMMENT '所属公司',
    `goods_brand_code` varchar(32) NULL COMMENT '品牌代码',
    `goods_brand_name` varchar(32) NULL COMMENT '品牌名称',
    `goods_brand_www` varchar(32) NULL COMMENT '品牌网址',
    `goods_brand_pic` varchar(64) NULL COMMENT '品牌图片',
    `goods_brand_text` varchar(128) NULL COMMENT '备注',
    `goods_brand_del` varchar(32) NULL COMMENT '停用',
    `create_name` varchar(50) NULL COMMENT '创建人名称',
    `create_by` varchar(50) NULL COMMENT '创建人登录名称',
    `create_date` datetime NULL COMMENT '创建日期',
    KEY `update_name` (`update_name`),
    KEY `update_by` (`update_by`),
    KEY `update_date` (`update_date`),
    KEY `sys_org_code` (`sys_org_code`),
    KEY `sys_company_code` (`sys_company_code`),
    KEY `goods_brand_code` (`goods_brand_code`),
    KEY `goods_brand_name` (`goods_brand_name`),
    KEY `goods_brand_www` (`goods_brand_www`),
    KEY `goods_brand_pic` (`goods_brand_pic`),
    KEY `goods_brand_text` (`goods_brand_text`),
    KEY `goods_brand_del` (`goods_brand_del`),
    KEY `create_name` (`create_name`),
    KEY `create_by` (`create_by`),
    KEY `create_date` (`create_date`),
    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-14 of 14 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
update_namevarchar(50)更新人名称
update_byvarchar(50)更新人登录名称
update_datedatetime更新日期
sys_org_codevarchar(50)所属部门
sys_company_codevarchar(50)所属公司
goods_brand_codevarchar(32)品牌代码
goods_brand_namevarchar(32)品牌名称
goods_brand_wwwvarchar(32)品牌网址
goods_brand_picvarchar(64)品牌图片
goods_brand_textvarchar(128)备注
goods_brand_delvarchar(32)停用
create_namevarchar(50)创建人名称
create_byvarchar(50)创建人登录名称
create_datedatetime创建日期

Guess You Like

MySQL Table Design okayapi_jeewms_ba_act_type

MySQL Table Design okayapi_jeewms_ba_area

MySQL Table Design okayapi_jeewms_ba_barea

MySQL Table Design okayapi_jeewms_ba_bin_type

MySQL Table Design okayapi_jeewms_ba_buss_type

MySQL Table Design okayapi_jeewms_ba_city

MySQL Table Design okayapi_jeewms_ba_city_type

MySQL Table Design okayapi_jeewms_ba_classfl

MySQL Table Design okayapi_jeewms_ba_com_deg

MySQL Table Design okayapi_jeewms_ba_com_type

MySQL Table Design okayapi_jeewms_ba_comp

MySQL Table Design okayapi_jeewms_ba_cont_spec

MySQL Table Design okayapi_jeewms_ba_cont_type

MySQL Table Design okayapi_jeewms_ba_cost

MySQL Table Design okayapi_jeewms_ba_cost_conf

MySQL Table Design okayapi_jeewms_ba_cost_type

MySQL Table Design okayapi_jeewms_ba_cus_sta

MySQL Table Design okayapi_jeewms_ba_deg_type

MySQL Table Design okayapi_jeewms_ba_del_mode

MySQL Table Design okayapi_jeewms_ba_edu_sta

TOP ↑