Product 表 (AdventureWorks)
包含售出的或在售出产品的生产过程中使用的产品。
Product 表定义
Product 表包含在 Production 架构中。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ProductID |
int |
非空 |
Product 行的主键。 |
Name |
Name(用户定义类型) nvarchar(50) |
非空 |
产品的名称。 |
ProductNumber |
nvarchar(25) |
非空 |
唯一的产品标识号。 |
MakeFlag |
Flag(用户定义类型) bit |
非空 |
0 = 产品是购买的。 1 = 产品是内部生产的。 |
FinishedGoodsFlag |
Flag(用户定义类型) bit |
非空 |
0 = 产品不可销售。 1 = 产品可销售。 |
Color |
nvarchar(15) |
空 |
产品的颜色。 |
SafetyStockLevel |
smallint |
非空 |
最小库存量。 |
ReorderPoint |
smallint |
非空 |
触发采购订单或工作订单的库存水平。 |
StandardCost |
money |
非空 |
产品的标准成本。 |
ListPrice |
money |
非空 |
销售价格。 |
Size |
nvarchar(5) |
空 |
产品的规格。 |
SizeUnitMeasureCode |
nchar(3) |
空 |
Size 列的测量单位。 |
WeightUnitMeasureCode |
nchar(3) |
空 |
Weight 列的测量单位。 |
Weight |
decimal (8,2) |
空 |
产品的重量。 |
DaysToManufacture |
int |
非空 |
生产产品所需的天数。 |
ProductLine |
nchar(2) |
空 |
R = 平地 M = 山地 T = 旅行 S = 标准 |
Class |
nchar(2) |
空 |
H = 高 M = 中 L = 低 |
Style |
nchar(2) |
空 |
W = 女式 M = 男式 U = 通用 |
ProductSubcategoryID |
smallint |
空 |
产品所属的产品子类别。指向 ProductCategory.ProductCategoryID 的外键。 |
ProductModelID |
int |
空 |
产品所属的产品型号。指向 ProductModel.ProductModelID 的外键。 |
SellStartDate |
datetime |
非空 |
产品开始销售的日期。 |
SellEndDate |
datetime |
空 |
产品停止销售的日期。 |
DiscontinuedDate |
datetime |
空 |
产品停产的日期。 |
rowguid |
uniqueidentifier ROWGUIDCOL |
非空 |
唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
请参阅
参考
BillOfMaterials 表 (AdventureWorks)
ProductCostHistory 表 (AdventureWorks)
ProductDocument 表 (dventureWorks)
ProductModel 表 (AdventureWorks)
ProductProductPhoto 表 (AdventureWorks)
ProductReview 表 (AdventureWorks)
ProductSubcategory 表 (AdventureWorks)
UnitMeasure 表 (AdventureWorks)