+ 立即免费创建此表 返回数据库大全

MySQL建表SQL语句

数据库结构:CRM-每日客户统计:https://open.yesapi.cn/tablelist/yesapi_72crm_crm_customer_stats.html


-- 数据库大全:CRM-每日客户统计
-- 来源:YesApi.cn
CREATE TABLE `yesapi_72crm_crm_customer_stats` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `user_id` bigint(20) NOT NULL COMMENT '用户id',
    `customer_num` int(10) NOT NULL DEFAULT '0' COMMENT '客户总数',
    `create_time` datetime NOT NULL COMMENT '统计时间',
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CRM-每日客户统计';

复制后,到数据库执行,即可创建此数据库表。


MySQL数据库表结构设计

第 1-3 条, 共 3 条.
字段名称字段类型字段默认值是否允许为空字段描述索引字段数据示例
user_idbigint(20)用户id无索引
customer_numint(10)0客户总数无索引0
create_timedatetime统计时间无索引

猜你喜欢

MySQL数据库设计 CRM-客户规则

MySQL数据库设计 CRM-部门表

MySQL数据库设计 CRM-审批流程表

MySQL数据库设计 CRM-审核日志表

MySQL数据库设计 CRM-审核记录表

MySQL数据库设计 CRM-审批步骤表

MySQL数据库设计 CRM-字段排序表

MySQL数据库设计 CRM-自定义字段值

MySQL数据库设计 CRM-附件表

MySQL数据库设计 CRM-后台菜单表

MySQL数据库设计 CRM-系统消息表

MySQL数据库设计 CRM-跟进记录

MySQL数据库设计 CRM-角色表

MySQL数据库设计 CRM-角色菜单对应关系表

MySQL数据库设计 CRM-场景

MySQL数据库设计 CRM-场景默认关系表

MySQL数据库设计 CRM-用户表

MySQL数据库设计 CRM-用户角色对应关系表

MySQL数据库设计 CRM-业绩目标

MySQL数据库设计 CRM-字段操作记录表



回到顶部 ↑