#MISP#字段分析

字段分析

产品表(ProductTable

字段名

字段类型

备注

产品编号(ProductID

Int

not null    主键

产品品牌(ProductName

varchar

not null

产品分类(ProductCategory

varchar

not null     外键

产品价格(ProductPrice

varchar

not null

产品尺码(ProductSize

varchar

not null

产品颜色(ProductColor

varchar

not null

产品销售量(ProductSalesVolume)

int

not null

产品库存量(ProductInventory)

int

not null

   

产品分类表(ProductCategoryTable

字段名

字段类型

备注

产品分类编号(ProductCategoryID

Int

not null     主键

类别名称(CategoryName

varchar

not null

 

客户表(CustomerTable)

字段名

字段类型

备注

客户编号(CustomerID

Int

not null     主键

客户名(CustomerName

varchar

not null

客户性别(CustomerGender

&

not null

客户电话(CustomerPhone

varchar

not null

客户年龄(CustomerAge

int

not null

客户级别(CustomerLevel

varchar

not null     外键

客户收入(CustomerIncome

varchar

not null

客户邮箱(CustomerMail

varchar

not null

客户银行账户(CustomerAccount

varchar

not null

 

客户级别表(CustomerLevelTable

字段名

字段类型

备注

客户级别编号(CustomerCategoryID

Int

not null     主键

级别名称(CategoryName

varchar

not null

 

销售记录表(SalesRecordInfo

字段名

字段类型

备注

记录编号(SalesRecID

Int

not null     主键

产品编号(ProductID

Int

not null     外键

产品分类编号(ProductCategoryID

Int

not null     外键

客户编号(CustomerID

Int

not null     外键

客户级别编号(CustomerCategoryID

Int

not null     外键

销售日期(SalesDate

varchar

not null

产品数量(ProductSalesVolume

varchar

not null

产品单价(ProductPrice

varchar

not null

销售总额(SalesTotal

varchar

not null

 

 

 

你可能感兴趣的:(#MISP#字段分析)