+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_crm_emailgroup:/tablelist/okayapi_crm_emailgroup.html


-- MySQL Table okayapi_crm_emailgroup
-- From: OkayAPI.com
CREATE TABLE `okayapi_crm_emailgroup` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `title` varchar(255) NULL COMMENT '标题',
    `content` varchar(255) NULL COMMENT '内容',
    `marketinggroup_id` int(11) NULL COMMENT '营销群',
    `status` varchar(255) NULL COMMENT '状态',
    KEY `title` (`title`),
    KEY `content` (`content`),
    KEY `marketinggroup_id` (`marketinggroup_id`),
    KEY `status` (`status`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CRM-邮箱发送组';

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
titlevarchar(255)标题
contentvarchar(255)内容
marketinggroup_idint(11)营销群
statusvarchar(255)状态

Guess You Like

MySQL Table Design okayapi_crm_accountrecordss

MySQL Table Design okayapi_crm_announcements

MySQL Table Design okayapi_crm_caigoutuihuos

MySQL Table Design okayapi_crm_campaigns

MySQL Table Design okayapi_crm_charges

MySQL Table Design okayapi_crm_chargesrecords

MySQL Table Design okayapi_crm_checks

MySQL Table Design okayapi_crm_competitor

MySQL Table Design okayapi_crm_complaints

MySQL Table Design okayapi_crm_contacter

MySQL Table Design okayapi_crm_contactlog

MySQL Table Design okayapi_crm_customer

MySQL Table Design okayapi_crm_dailylogs

MySQL Table Design okayapi_crm_deliverys

MySQL Table Design okayapi_crm_emailgroupinfo

MySQL Table Design okayapi_crm_expenses

MySQL Table Design okayapi_crm_faq

MySQL Table Design okayapi_crm_faqcategory

MySQL Table Design okayapi_crm_gathers

MySQL Table Design okayapi_crm_gathersrecords

TOP ↑