ProductVendor テーブル (AdventureWorks)
仕入先を製品 (Adventure Works Cycles に供給される製品) にマップする相互参照テーブルです。
ProductVendor テーブルの定義
ProductVendor テーブルは、Purchasing スキーマに含まれています。
列 | データ型 | NULL 属性 | 説明 |
---|---|---|---|
ProductID |
int |
NOT NULL |
主キー。Product.ProductID への外部キーです。 |
VendorID |
int |
NOT NULL |
主キー。Vendor.VendorID への外部キーです。 |
AverageLeadTime |
int |
NOT NULL |
仕入先に注文してから製品が納品されるまでの平均日数。 |
StandardPrice |
money |
NOT NULL |
仕入先の通常の販売価格。 |
LastReceiptCost |
money |
NULL |
前回購入時の販売価格。 |
LastReceiptDate |
datetime |
NULL |
仕入先から前回製品が納品された日付。 |
MinOrderQty |
int |
NOT NULL |
注文数量の下限。 |
MaxOrderQty |
int |
NOT NULL |
注文数量の上限。 |
OnOrderQty |
int |
NULL |
現在注文されている数量。 |
UnitMeasureCode |
nchar(3) |
NOT NULL |
製品の単位。 |
ModifiedDate |
datetime |
NOT NULL |
行が最後に更新された日時。 |
参照
関連項目
Product テーブル (AdventureWorks)
UnitMeasure テーブル (AdventureWorks)
Vendor テーブル (AdventureWorks)