PurchaseOrderDetail 資料表 (AdventureWorks)
包含每份採購訂單所要購買的產品。採購訂單可能會包括多項產品的訂單。每份採購訂單的一般或父項資訊儲存於 PurchaseOrderHeader 資料表內。已訂購的每個產品或子產品儲存於 PurchaseOrderDetail。
PurchaseOrderDetail 資料表定義
PurchaseOrderDetail 資料表包含於 Purchasing 結構描述內。
資料行 | 資料類型 | Null 屬性 | 描述 |
---|---|---|---|
PurchaseOrderID |
int |
非 Null |
主索引鍵。PurchaseOrderHeader.PurchaseOrderID 的外部索引鍵。 |
PurchaseOrderDetailID |
int |
非 Null |
主索引鍵。用來確保資料唯一性的序號。 |
DueDate |
datetime |
非 Null |
預估從供應商收到產品的日期。 |
OrderQty |
smallint |
非 Null |
訂購的數量。 |
ProductID |
int |
非 Null |
訂購之產品的產品識別碼。Product.ProductID 的外部索引鍵。 |
UnitPrice |
money |
非 Null |
單一產品的價格。 |
LineTotal |
計算方式為 OrderQty * UnitPrice |
非 Null |
產品成本的小計。 |
ReceivedQty |
decimal (8,2) |
非 Null |
實際從供應商收到的數量。 |
RejectedQty |
decimal (8,2) |
非 Null |
檢查期間不合格的數量。 |
StockedQty |
計算方式為 ReceiveQty - RejectedQty |
非 Null |
接受為存貨的數量。 |
ModifiedDate |
datetime |
非 Null |
資料列上次更新的日期和時間。 |
請參閱
參考
Product 資料表 (AdventureWorks)
PurchaseOrderHeader 資料表 (AdventureWorks)
Vendor 資料表 (AdventureWorks)