BillOfMaterials 資料表 (AdventureWorks)
包含用來製造自行車及自行車各細部組件的所有元件清單。ProductAssemblyID 資料行表示父產品 (或主要) 產品,而 ComponentID 表示用來組成父組件的子零件 (或個別零件)。例如,車輪組件包含像是反光燈、輪框、輪輻、輪胎和內胎之類的元件。
BillOfMaterials 資料表定義
BillOfMaterials 資料表包含於 Production 結構描述內。
資料行 |
資料類型 |
Null 屬性 |
描述 |
---|---|---|---|
BillOfMaterialsID |
int |
非 Null |
BillOfMaterials 資料列的主索引鍵。 |
ProductAssemblyID |
int |
Null |
父產品的識別碼。Product.ProductID 的外部索引鍵。 |
ComponentID |
int |
非 Null |
元件的識別碼。Product.ProductID 的外部索引鍵。 |
StartDate |
datetime |
非 Null |
在組件項目上開始使用元件的日期。 |
EndDate |
datetime |
Null |
在組件項目上停止使用元件的日期。 |
UnitMeasureCode |
nchar(3) |
非 Null |
表示數量之量值單位的標準代碼。 |
BOMLevel |
smallint |
非 Null |
指示元件的層級是來自於其父項 (ProductAssemblyID)。 |
PerAssemblyQty |
decimal(8,2) |
非 Null |
建立組件所需的元件數量。 |
ModifiedDate |
datetime |
非 Null |
資料列上次更新的日期和時間。 |