MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:CRM-客户:https://open.yesapi.cn/tablelist/yesapi_crm_customer.html
-- 数据库大全:CRM-客户
-- 来源:YesApi.cn
CREATE TABLE `yesapi_crm_customer` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`customer_name` varchar(255) NULL COMMENT '客户名称',
`phone` varchar(255) NULL COMMENT '手机',
`status` varchar(255) NULL COMMENT '状态',
`deleted` tinyint(4) NULL DEFAULT '0' COMMENT '删除标识:0未删除,1删除',
`createtime` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`website` int(11) NULL COMMENT '网站',
`numberofemployees` int(11) NULL COMMENT '员工人数',
`natureofbusiness` int(11) NULL COMMENT '公司性质',
`customertype` int(11) NULL COMMENT '客户类型',
`tel` int(11) NULL COMMENT '电话',
`firstcontacter` int(11) NULL COMMENT '首要联系人',
`othertel` int(11) NULL COMMENT '其他电话',
`fax` int(11) NULL COMMENT '传真',
`email` int(11) NULL COMMENT 'Email',
`address` int(11) NULL COMMENT '地址',
`paymethod` int(11) NULL COMMENT '支付方式',
`memo` int(11) NULL COMMENT '备注',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CRM-客户';
复制后,到数据库执行,即可创建此数据库表。
MySQL数据库表结构设计
第 1-17 条, 共 17 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
customer_name | varchar(255) | 是 | 客户名称 | 无索引 | ||
phone | varchar(255) | 是 | 手机 | 无索引 | ||
status | varchar(255) | 是 | 状态 | 无索引 | ||
deleted | tinyint(4) | 0 | 否 | 删除标识:0未删除,1删除 | 无索引 | 0 |
createtime | timestamp | CURRENT_TIMESTAMP | 否 | 创建时间 | 无索引 | CURRENT_TIMESTAMP |
website | int(11) | 是 | 网站 | 无索引 | ||
numberofemployees | int(11) | 是 | 员工人数 | 无索引 | ||
natureofbusiness | int(11) | 是 | 公司性质 | 无索引 | ||
customertype | int(11) | 是 | 客户类型 | 无索引 | ||
tel | int(11) | 是 | 电话 | 无索引 | ||
firstcontacter | int(11) | 是 | 首要联系人 | 无索引 | ||
othertel | int(11) | 是 | 其他电话 | 无索引 | ||
fax | int(11) | 是 | 传真 | 无索引 | ||
int(11) | 是 | 无索引 | ||||
address | int(11) | 是 | 地址 | 无索引 | ||
paymethod | int(11) | 是 | 支付方式 | 无索引 | ||
memo | int(11) | 是 | 备注 | 无索引 |