MySQL数据库表结构设计
第 1-12 条, 共 12 条.
字段名称 | 字段类型 | 字段默认值 | 是否允许为空 | 字段描述 | 索引 | 字段数据示例 |
---|---|---|---|---|---|---|
productcategory_id | int(11) | 是 | 产品分类ID | 无索引 | ||
unit | varchar(255) | 是 | 单位 | 无索引 | ||
model | varchar(255) | 是 | 型号 | 无索引 | ||
weight | decimal(10,0) | 是 | 重量 | 无索引 | ||
unitprice | decimal(10,0) | 是 | 单价 | 无索引 | ||
costprice | decimal(10,0) | 是 | 成本 | 无索引 | ||
saleprice | decimal(10,0) | 是 | 售价 | 无索引 | ||
description | text | 是 | 描述 | 无索引 | ||
productname | varchar(255) | 是 | 产品名称 | 无索引 | ||
deleted | tinyint(4) | 0 | 否 | 删除标识,0-未删除,1-删除 | 无索引 | 0 |
warrantydays | varchar(255) | 是 | 保修天数 | 无索引 | ||
website | int(11) | 是 | 网址 | 无索引 |
MySQL建表SQL语句 免费MySQL数据库表结构设计
数据库结构:CRM-产品:https://open.yesapi.cn/tablelist/yesapi_crm_product.html
-- 数据库大全:CRM-产品
-- 来源:YesApi.cn
CREATE TABLE `yesapi_crm_product` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`productcategory_id` int(11) NULL COMMENT '产品分类ID',
`unit` varchar(255) NULL COMMENT '单位',
`model` varchar(255) NULL COMMENT '型号',
`weight` decimal(10,0) NULL COMMENT '重量',
`unitprice` decimal(10,0) NULL COMMENT '单价',
`costprice` decimal(10,0) NULL COMMENT '成本',
`saleprice` decimal(10,0) NULL COMMENT '售价',
`description` text NULL COMMENT '描述',
`productname` varchar(255) NULL COMMENT '产品名称',
`deleted` tinyint(4) NULL DEFAULT '0' COMMENT '删除标识,0-未删除,1-删除',
`warrantydays` varchar(255) NULL COMMENT '保修天数',
`website` int(11) NULL COMMENT '网址',
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CRM-产品';
复制后,到数据库执行,即可创建此数据库表。