是一个将产品映射到相关产品文档的交叉引用表。
ProductDocument 表包含在 Production 架构中。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ProductID |
int |
非空 |
产品标识号。指向 Product.ProductID 的外键。 |
DocumentID |
int |
非空 |
文档标识号。指向 Document.DocumentID 的外键。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
参考
Document 表 (AdventureWorks):一个将产品映射到相关产品文档的交叉引用表。列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ProductID |
int |
非空 |
产品标识号。指向 Product.ProductID 的外键。 |
DocumentID |
int |
非空 |
文档标识号。指向 Document.DocumentID 的外键。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
ProductInventory 表 (AdventureWorks):含产品库存信息。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ProductID |
int |
非空 |
产品标识号。指向 Product.ProductID 的外键。 |
LocationID |
smallint |
非空 |
库存位置标识号。指向 Location.LocationID 的外键。 |
Shelf |
nvarchar(10) |
非空 |
库存位置中的的存储间。 |
Bin |
tinyint |
非空 |
库存位置中架子上的存储容器。 |
Quantity |
smallint |
非空 |
库存位置中的产品数量。 |
rowguid |
uniqueidentifier ROWGUIDCOL |
非空 |
唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
ProductListPriceHistory 表 (AdventureWorks):含一段时间以来对产品的标价所做的更改。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ProductID |
int |
非空 |
产品标识号。指向 Product.ProductID 的外键。 |
Startdate |
datetime |
非空 |
标价开始日期。 |
EndDate |
datetime |
空 |
标价结束日期。 |
ListPrice |
money |
非空 |
产品标价。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
ProductModel 表 (AdventureWorks):含产品型号分类以及产品类别和生产说明,它们都存储为 xml 数据类型。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ProductModelID |
int |
非空 |
ProductModel 行的主键。 |
Name |
Name(用户定义类型) nvarchar(50) |
非空 |
产品型号的说明。 |
CatalogDescription |
xml |
空 |
XML 格式的详细的产品类别信息。有关详细信息,请参阅关于 ProductModel.CatalogDescription xml 列。 |
Instructions |
xml |
空 |
XML 格式的制造说明。有关详细信息,请参阅关于 ProductModel.Instructions xml 列。 |
rowguid |
uniqueidentifier ROWGUIDCOL |
非空 |
唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
ProductModelIllustration 表 (AdventureWorks):义产品型号和图示的映射关系的交叉引用表。ProductModel 表的 Instructions 列中引用了有关的图。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ProductModelID |
int |
非空 |
主键。指向 ProductModel.ProductModelID 的外键。 |
IllustrationID |
int |
非空 |
主键。指向 Illustration.IllustrationID 的外键。 |
ModifiedDate |
datetime |
非空 |
记录的上次更新日期和时间。 |
ProductModelProductDescriptionCulture 表 (AdventureWorks):一个映射产品型号说明和说明所用语言的交叉引用表。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ProductModelID |
int |
非空 |
主键。指向 ProductModel.ProductModelID 的外键。 |
ProductDescriptionID |
int |
非空 |
主键。指向 ProductDescription.ProductDescriptionID 的外键。 |
CultureID |
nchar(6) |
非空 |
区域性标识号。指向 Culture.CultureID 的外键。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
ProductPhoto 表 (AdventureWorks):含产品的图像。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ProductPhotoID |
int |
非空 |
ProductPhoto 行的主键。 |
ThumbNailPhoto |
varbinary(max) |
空 |
产品的小图像。 |
ThumbnailPhotoFileName |
nvarchar(50) |
空 |
小图像文件名。 |
LargePhoto |
varbinary(max) |
空 |
产品的大图像。 |
LargePhotoFileName |
nvarchar(50) |
空 |
大图像文件名。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
ProductProductPhoto 表 (AdventureWorks):一个映射产品和产品图像的交叉引用表。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ProductID |
int |
非空 |
产品标识号。指向 Product.ProductID 的外键。 |
ProductPhotoID |
int |
非空 |
产品图像标识号。指向 ProductPhoto.ProductPhotoID 的外键。 |
Primary |
Flag(用户定义类型) bit |
非空 |
0 = 不是主体图像。 1 = 是主体图像。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
ProductReview 表 (AdventureWorks):含客户对已经采购的产品的评论。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ProductReviewID |
int |
非空 |
ProductReview 行的主键。 |
ProductID |
int |
非空 |
产品标识号。指向 Product.ProductID 的外键。 |
ReviewerName |
Name(用户定义类型) nvarchar(50) |
非空 |
评论人姓名。 |
ReviewDate |
datetime |
非空 |
提交评论的日期。 |
EmailAddress |
nvarchar(50) |
非空 |
评论人的电子邮件地址。 |
Rating |
int |
非空 |
由评论人给出的产品等级。范围是 1 到 5,5 为最高等级。 |
Comments |
nvarchar(3850) |
空 |
评论人的注释 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
ProductSubcategory 表 (AdventureWorks):含产品子类别,例如:山地自行车、车轮、手套、头盔和清洁剂。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ProductSubcategoryID |
smallint |
非空 |
ProductSubcategory 行的主键。 |
ProductCategoryID |
int |
非空 |
产品类别标识号。指向 ProductCategory.ProductCategoryID 的外键。 |
Name |
Name(用户定义类型) nvarchar(50) |
非空 |
子类别说明。 |
rowguid |
uniqueidentifier ROWGUIDCOL |
非空 |
唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
ProductVendor 表 (AdventureWorks):一个将供应商映射到其提供给 Adventure Works Cycles 的产品的交叉引用表。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ProductID |
int |
非空 |
主键。指向 Product.ProductID 的外键。 |
VendorID |
int |
非空 |
主键。指向 Vendor.VendorID 的外键。 |
AverageLeadTime |
int |
非空 |
向供应商下订单和收到采购的产品之间的平均时间长度(天)。 |
StandardPrice |
money |
非空 |
供应商通常的销售价格。 |
LastReceiptCost |
money |
空 |
上次采购时的销售价格。 |
LastReceiptDate |
datetime |
空 |
上次收到供应商的产品的日期。 |
MinOrderQty |
int |
非空 |
应订购的最小数量。 |
MaxOrderQty |
int |
非空 |
应订购的最大数量。 |
OnOrderQty |
int |
空 |
当前订购的数量。 |
UnitMeasureCode |
nchar(3) |
非空 |
产品测量单位。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
PurchaseOrderDetail 表 (AdventureWorks):含每个采购订单要采购的产品。一个采购订单可以订购多个产品。每个采购订单的常规或父级信息存储在 PurchaseOrderHeader 表中。每个订购的产品或子级信息存储在 PurchaseOrderDetail 中。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
PurchaseOrderID |
int |
非空 |
主键。指向 PurchaseOrderHeader.PurchaseOrderID 的外键。 |
PurchaseOrderDetailID |
int |
非空 |
主键。用于确保数据唯一性的连续编号。 |
DueDate |
datetime |
非空 |
希望从供应商收到产品的日期。 |
OrderQty |
smallint |
非空 |
订购数量。 |
ProductID |
int |
非空 |
订购的产品的产品标识号。指向 Product.ProductID 的外键。 |
UnitPrice |
money |
非空 |
单件产品的价格。 |
LineTotal |
计算方式为 OrderQty * UnitPrice |
非空 |
产品成本小计。 |
ReceivedQty |
decimal (8,2) |
非空 |
实际从供应商收到的数量。 |
RejectedQty |
decimal (8,2) |
非空 |
检查时拒收的数量。 |
StockedQty |
计算方式为 ReceiveQty - RejectedQty |
非空 |
纳入库存的数量。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
PurchaseOrderHeader 表 (AdventureWorks):含常规或父级采购订单信息。与采购订单关联的产品存储在 PurchaseOrderDetail 表中。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
PurchaseOrderID |
int |
非空 |
主键。 |
RevisionNumber |
tinyint |
非空 |
用于跟踪一段时间内采购订单的变化的递增编号。 |
Status |
tinyint |
非空 |
订单的当前状态。1 = 等待批准 2 = 已批准 3 = 已拒绝 4 = 完成 |
EmployeeID |
int |
非空 |
创建采购订单的雇员。指向 Employee.EmployeeID 的外键。 |
VendorID |
int |
非空 |
采购订单所采购的产品的供应商。指向 Vendor.VendorID 的外键。 |
ShipMethodID |
int |
非空 |
发货方法。指向 ShipMethod.ShipMethodID 的外键。 |
OrderDate |
datetime |
非空 |
采购订单的创建日期。 |
ShipDate |
datetime |
非空 |
预计供应商的发货日期。 |
SubTotal |
money |
非空 |
采购订单小计。 |
TaxAmt |
money |
非空 |
税额。 |
Freight |
money |
非空 |
运费。 |
TotalDue |
计算方式为 SubTotal + TaxAmt + Freight |
非空 |
付给供应商的应付款总计。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
SalesOrderDetail 表 (AdventureWorks):含与特定销售订单关联的各个产品。一个销售订单可以订购多个产品。每个销售订单的常规或父级信息存储在 SalesOrderHeader 中。每个订购的产品或子级信息存储在 SalesOrderDetail 中。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
SalesOrderID |
int |
非空 |
主键。指向 SalesOrderHeader.SalesOrderID 的外键。 |
SalesOrderDetailID |
tinyint |
非空 |
主键。用于确保数据唯一性的连续编号。 |
CarrierTrackingNumber |
nvarchar(25) |
非空 |
发货人提供的发货跟踪号。 |
OrderQty |
smallint |
非空 |
每个产品的订购数量。 |
ProductID |
int |
非空 |
销售给客户的产品。指向 Product.ProductID 的外键。 |
SpecialOfferID |
int |
非空 |
促销代码。指向 SpecialOffer.SpecialOfferID 的外键。 |
UnitPrice |
money |
非空 |
单件产品的销售价格。 |
UnitPriceDiscount |
money |
非空 |
折扣金额。 |
LineTotal |
计算方式为 OrderQty * UnitPrice |
非空 |
每件产品的小计。 |
rowguid |
uniqueidentifier ROWGUIDCOL |
非空 |
唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
SalesOrderHeader 表 (AdventureWorks):含常规或父级销售订单信息。与销售订单关联的特定产品存储在 SalesOrderDetail 表中。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
SalesOrderID |
int |
非空 |
主键。 |
RevisionNumber |
tinyint |
非空 |
随着时间的推移跟踪销售订单更改的递增编号。 |
OrderDate |
datetime |
非空 |
创建销售订单的日期。 |
DueDate |
datetime |
非空 |
客户订单到期的日期。 |
ShipDate |
datetime |
非空 |
订单发送给客户的日期。 |
Status |
tinyint |
非空 |
订单的当前状态。1 = 处理中 2 = 已批准 3 = 预定 4 = 已拒绝 5 = 已发货 6 = 已取消 |
OnlineOrderFlag |
Flag(用户定义类型) bit |
非空 |
0 = 销售人员下的订单。 1 = 客户在线下的订单。 |
SalesOrderNumber |
nvarchar(25) |
非空 |
唯一的销售订单标识号。 |
PurchaseOrderNumber |
OrderNumber(用户定义类型) nvarchar(25) |
非空 |
客户采购订单号引用。 |
AccountNumber |
AccountNumber(用户定义类型) nvarchar(15) |
非空 |
财务帐号引用。 |
CustomerID |
int |
非空 |
客户标识号。指向 Customer.CustomerID 的外键。 |
ContactID |
int |
非空 |
客户联系人标识号。指向 Contact.ContactID 的外键。 |
SalesPersonID |
int |
非空 |
创建销售订单的销售人员。指向 SalesPerson.SalePersonID 的外键。 |
TerritoryID |
int |
非空 |
进行销售的地区。指向 SalesTerritory.SalesTerritoryID 的外键。 |
BillToAddressID |
int |
非空 |
客户开票地址。指向 Address.AddressID 的外键。 |
ShipToAddressID |
int |
非空 |
客户收货地址。指向 Address.AddressID 的外键。 |
ShipMethodID |
int |
非空 |
发货方法。指向 ShipMethod.ShipMethodID 的外键。 |
CreditCardID |
int |
非空 |
信用卡标识号。指向 CreditCard.CreditCardID 的外键。 |
CreditCardApprovalCode |
varchar(15) |
非空 |
信用卡公司提供的批准代码。 |
CurrencyRateID |
int |
非空 |
所使用的外币兑换率。指向 CurrencyRate.CurrencyRateID 的外键。 |
SubTotal |
money |
非空 |
销售小计。SalesOrderID 的销售小计的计算方式为 SUM(SalesOrderDetail.LineTotal)。 |
TaxAmt |
money |
非空 |
税额。 |
Freight |
money |
非空 |
运费。 |
TotalDue |
计算方式为 SubTotal + TaxAmt + Freight |
非空 |
客户的应付款总计。 |
Comment |
nvarchar(128) |
非空 |
销售代表添加的注释。 |
rowguid |
uniqueidentifier ROWGUIDCOL |
非空 |
唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
SalesOrderHeaderSalesReason 表 (AdventureWorks):义销售订单与销售原因代码的映射关系的交叉引用表。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
SalesOrderID |
int |
非空 |
主键。指向 SalesOrderHeader.SalesOrderID 的外键。 |
SalesReasonID |
int |
非空 |
主键。指向 SalesReason.SalesReasonID 的外键。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
SalesPerson 表 (AdventureWorks):含当前销售代表的销售信息。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
SalesPersonID |
int |
非空 |
SalesPerson 行的主键。 |
TerritoryID |
int |
空 |
当前分配到的地区。指向 SalesTerritory.SalesTerritoryID 的外键。 |
SalesQuota |
money |
空 |
计划的年度销售额。 |
Bonus |
money |
非空 |
完成销售额后的应得奖金。 |
CommissionPct |
smallmoney |
非空 |
按销售所得的佣金百分比。 |
SalesYTD |
money |
非空 |
本年度截止到现在的销售总额。 |
SalesLastYear |
money |
非空 |
上一年的销售总额。 |
rowguid |
uniqueidentifier |
非空 |
唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
SalesPersonQuotaHistory 表 (AdventureWorks):含销售代表的历史销售信息。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
SalesPersonID |
int |
非空 |
销售人员标识号。指向 SalesPerson.SalesPersonID 的外键。 |
QuotaDate |
datetime |
非空 |
销售配额日期。 |
SalesQuota |
money |
非空 |
销售配额量。 |
rowguid |
uniqueidentifier |
非空 |
唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
SalesReason 表 (AdventureWorks):一个包含客户采购特定产品的原因的查找表。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
SalesReasonID |
int |
非空 |
SalesReason 行的主键。 |
Name |
Name(用户定义类型) nvarchar(50) |
非空 |
销售原因说明。 |
ReasonType |
Name(用户定义类型) nvarchar(50) |
非空 |
销售原因所属的类别。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
SalesTaxRate 表 (AdventureWorks):一个税率查找表,其中列出了 Adventure Works Cycles 业务覆盖范围内的州、省、市、自治区或国家/地区各自适用的税率。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
SalesTaxRateID |
int |
非空 |
SalesTaxRate 行的主键。 |
StateProvinceID |
int |
非空 |
应用销售税的州、省、市、自治区或国家/地区。 |
TaxType |
tinyint |
非空 |
1 = 应用到零售交易的税。 2 = 应用到批发交易的税。 3 = 应用到所有种类的销售(零售交易和批发交易)的税。 |
TaxRate |
smallmoney |
非空 |
税额。 |
Name |
Name(用户定义类型) nvarchar(50) |
非空 |
税率说明。 |
rowguid |
uniqueidentifier |
非空 |
唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
SalesTerritory 表 (AdventureWorks):含由 Adventure Works Cycles 销售团队负责的销售地区的查找表。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
TerritoryID |
int |
非空 |
主键。 |
Name |
Name(用户定义类型) nvarchar(50) |
非空 |
销售地区说明 |
CountryRegionCode |
nvarchar(3) |
非空 |
标准国家或地区代码。指向 CountryRegion.CountryRegionCode 的外键。 |
Group |
nvarchar(50) |
非空 |
销售地区所属的地理区域。 |
SalesYTD |
money |
非空 |
此地区本年度到目前为止的销售额。 |
SalesLastYear |
money |
非空 |
此地区上一年的销售额。 |
CostYTD |
money |
非空 |
此地区本年度到目前为止的业务成本。 |
CostLastYear |
money |
非空 |
此地区上一年的业务成本。 |
rowguid |
uniqueidentifier |
非空 |
唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
SalesTerritoryHistory 表 (AdventureWorks):踪将销售代表调动到其他销售地区的情况。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
SalesPersonID |
int |
非空 |
主键。 |
TerritoryID |
int |
非空 |
地区标识号。指向 SalesTerritory.SalesTerritoryID 的外键。 |
Startdate |
datetime |
非空 |
销售代表在该地区中开始工作的日期。 |
EndDate |
datetime |
空 |
销售代表在该地区中停止工作的日期。 |
rowguid |
uniqueidentifier |
非空 |
唯一标识记录的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
ScrapReason 表 (AdventureWorks):一个包含生产失败原因的查找表。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ScrapReasonID |
smallint |
非空 |
主键。 |
Name |
Name(用户定义类型) nvarchar(50) |
非空 |
失败说明。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
Shift 表 (AdventureWorks):含工作轮班时间的查找表。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ShiftID |
smallint |
非空 |
主键。 |
Name |
Name(用户定义类型) nvarchar(50) |
非空 |
轮班时间说明。 |
StartTime |
datetime |
非空 |
轮班时间开始时间。 |
EndTime |
datetime |
非空 |
轮班时间结束时间。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
ShipMethod 表 (AdventureWorks):一个包含发货公司的查找表。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ShipMethodID |
int |
非空 |
主键。 |
Name |
Name(用户定义类型) nvarchar(50) |
非空 |
发货公司的名称。 |
ShipBase |
money |
非空 |
最低运费。 |
ShipRate |
money |
非空 |
每磅的运费。 |
rowguid |
uniqueidentifier |
非空 |
唯一标识记录的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
ShoppingCartItem 表 (AdventureWorks):含尚未提交或取消的在线客户订单。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
ShoppingCartItemID |
smallint |
非空 |
主键。 |
ShoppingCartID |
nvarchar(50) |
非空 |
购物车标识号。 |
Quantity |
int |
非空 |
订购的产品数量。 |
ProductID |
int |
非空 |
订购的产品。指向 Product.ProductID 的外键。 |
DateCreated |
datetime |
非空 |
行的创建日期和时间。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
SpecialOffer 表 (AdventureWorks):一个包含销售折扣的查找表。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
SpecialOfferID |
int |
非空 |
SpecialOffer 行的主键。 |
Description |
nvarchar(255) |
非空 |
折扣说明。 |
DiscountPct |
smallmoney |
非空 |
折扣百分比。 |
Type |
nvarchar(50) |
非空 |
折扣类型类别。 |
Category |
nvarchar(50) |
非空 |
应用折扣的组(如“经销商”或“客户”)。 |
Startdate |
datetime |
非空 |
折扣开始日期。 |
EndDate |
datetime |
非空 |
折扣结束日期。 |
MinQty |
int |
非空 |
允许的最小折扣百分比。 |
MaxQty |
int |
空 |
允许的最大折扣百分比。 |
rowguid |
uniqueidentifier |
非空 |
唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
SpecialOfferProduct 表 (AdventureWorks):一个将产品映射到销售折扣的交叉引用表。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
SpecialOfferID |
int |
非空 |
主键。 |
ProductID |
int |
非空 |
产品标识号。指向 Product.ProductID 的外键。 |
rowguid |
uniqueidentifier |
非空 |
唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
StateProvince 表 (AdventureWorks):一个包含用于标识国家/地区中的州、省、市、自治区的国际标准代码的查找表。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
StateProvinceID |
int |
非空 |
主键。 |
StateProvinceCode |
nchar(3) |
非空 |
州、省、市或自治区代码。 |
CountryRegionCode |
nvarchar(3) |
非空 |
国家或地区代码。指向 CountryRegion.CountryRegionCode 的外键。 |
IsOnlyStateProvinceFlag |
Flag(用户定义类型) bit |
非空 |
0 = 存在 StateProvinceCode。 1 = 不存在 StateProvinceCode,请使用 CountryRegionCode。 |
Name |
Name(用户定义类型) nvarchar(50) |
非空 |
州、省、市或自治区的说明。 |
TerritoryID |
int |
非空 |
州、省、市或自治区所在的 Adventure Works 销售地区的 ID。指向 SalesTerritory.SalesTerritoryID 的外键。 |
rowguid |
uniqueidentifier |
非空 |
唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
Store 表 (AdventureWorks):含 Adventure Works 产品的客户和经销商。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
CustomerID |
int |
非空 |
主键。指向 Customer.CustomerID 的外键。 |
Name |
Name(用户定义类型) nvarchar(50) |
非空 |
商店的名称。 |
SalesPersonID |
int |
空 |
负责向商店销售产品的 Adventure Works 销售代表的 ID。指向 SalesPerson.SalesPersonID 的外键。 |
Demographics |
xml |
空 |
商店的统计信息(例如雇员人数、年销售额和商店类型)。有关详细信息,请参阅关于 Store.Demographics xml 列。 |
rowguid |
uniqueidentifier |
非空 |
唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
StoreContact 表 (AdventureWorks):义商店及其与 Adventure Works Cycles 销售代表进行业务往来的雇员之间的映射关系的交叉引用表。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
CustomerID |
int |
非空 |
主键。商店标识号。指向 Customer.CustomerID 的外键。 |
ContactID |
int |
非空 |
主键。联系人(商店雇员)的标识号。指向 Contact.ContactID 的外键。 |
ContactTypeID |
tinyint |
非空 |
联系人类型,例如,所有者或购买代理。指向 ContactType.ContactTypeID 的外键。 |
rowguid |
uniqueidentifier |
非空 |
唯一标识行的 ROWGUIDCOL 号。用于支持合并复制示例。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
TransactionHistory 表 (AdventureWorks):含当前年度的各采购订单、销售订单或工作订单事务,每种事务占一行。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
TransactionID |
int |
非空 |
主键。 |
ProductID |
int |
非空 |
产品标识号。指向 Product.ProductID 的外键。 |
ReferenceOrderID |
int |
非空 |
采购订单、销售订单或工作订单的标识号。 |
ReferenceOrderLineNumber |
int |
非空 |
与采购订单、销售订单或工作订单关联的行号。 |
TransactionDate |
datetime |
非空 |
交易的日期和时间。 |
TransactionType |
nchar(1) |
非空 |
交易的类型。 P = 采购订单 S = 销售订单 W = 工作订单 |
Quantity |
int |
非空 |
产品数量。 |
ActualCost |
money |
非空 |
产品成本。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
TransactionHistoryArchive 表 (AdventureWorks):含当前年度以前的年度的每个采购订单、销售订单或工作订单事务的记录。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
TransactionID |
int |
非空 |
主键。 |
ProductID |
int |
非空 |
产品标识号。指向 Product.ProductID 的外键。 |
ReferenceOrderID |
int |
非空 |
采购订单、销售订单或工作订单的标识号。 |
ReferenceOrderLineNumber |
int |
非空 |
与采购订单、销售订单或工作订单关联的行号。 |
TransactionDate |
datetime |
非空 |
交易的日期和时间。 |
TransactionType |
nchar(1) |
非空 |
交易的类型。 P = 采购订单 S = 销售订单 W = 工作订单 |
Quantity |
int |
非空 |
产品数量。 |
ActualCost |
money |
非空 |
产品成本。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
UnitMeasure 表 (AdventureWorks):一个包含标准测量单位的代码和说明的查找表。例如,升的测量单位代码是 L。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
UnitMeasureCode |
nchar(3) |
非空 |
主键。 |
Name |
Name(用户定义类型) nvarchar(50) |
非空 |
测量单位的说明。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
Vendor 表 (AdventureWorks):含 Adventure Works Cycles 向其购买零件或其他商品的公司。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
VendorID |
int |
非空 |
主键。 |
AccountNumber |
AccountNumber(用户定义类型) nvarchar(15) |
非空 |
供应商帐户(标识)号。 |
Name |
Name(用户定义类型) nvarchar(50) |
非空 |
公司名称。 |
CreditRating |
tinyint |
非空 |
1 = 高级 2 = 很好 3 = 高于平均水平 4 = 平均 5 = 低于平均水平 |
PreferredVendorStatus |
Flag(用户定义类型) bit |
非空 |
0 = 不选择使用(如果存在其他供应商)。 1 = 首选使用(如果还有其他供应商提供相同产品)。 |
ActiveFlag |
Flag(用户定义类型) bit |
非空 |
0 = 不再使用供应商的产品。 1 = 正在使用供应商的产品。 |
PurchasingWebServiceURL |
nvarchar(1024) |
空 |
供应商的 URL。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
VendorAddress 表 (AdventureWorks):一个映射供应商及其地址的交叉引用表。供应商可能有多个地址,例如,供应商可能有不同的开票地址和发货地址。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
VendorID |
int |
非空 |
主键。指向 Vendor.VendorID 的外键。 |
AddressID |
int |
非空 |
主键。指向 Address.AddressID 的外键。 |
AddressTypeID |
int |
非空 |
地址类型。指向 AddressType.AddressTypeID 的外键。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
VendorContact 表 (AdventureWorks):一个映射供应商及其与 Adventure Works Cycles 雇员有业务往来的雇员的交叉引用表。例如,Adventure Works Cycles 的采购员将与供应商的销售代表联系来采购零件或产品。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
VendorID |
int |
非空 |
主键。 |
ContactID |
int |
非空 |
联系人、供应商雇员的标识号。指向 Contact.ContactID 的外键。 |
ContactTypeID |
int |
非空 |
联系人类型,例如,销售经理或销售代理。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
WorkOrder 表 (AdventureWorks):含生产工作订单。工作订单用于控制生产适量的产品,并及时满足销售或库存需求。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
WorkOrderID |
int |
非空 |
主键。 |
ProductID |
int |
非空 |
产品标识号。指向 Product.ProductID 的外键。 |
OrderQty |
int |
非空 |
要订购的产品数量。 |
StockedQty |
int |
非空 |
放入库存的产品数量。 |
ScrappedQty |
smallint |
非空 |
未通过检查的数量。 |
Startdate |
datetime |
非空 |
工作订单开始日期。 |
EndDate |
datetime |
空 |
工作订单结束日期。 |
DueDate |
datetime |
非空 |
工作订单到期日期。 |
ScrapReasonID |
smalllint |
空 |
产品未通过检查的原因。 指向 Production.ScrapReason 的外键。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |
WorkOrderRouting 表 (AdventureWorks):含生产工作订单详细信息。工作订单详细信息控制在生产过程中产品在各个生产车间之间流动的顺序。 WorkOrderRouting 还包含计划和实际的生产开始日期和生产结束日期,以及用来生产指定产品的每个生产车间的成本。
列 | 数据类型 | 为空性 | 说明 |
---|---|---|---|
WorkOrderID |
int |
非空 |
主键。指向 WorkOrder.WorkOrderID 的外键。 |
ProductID |
int |
非空 |
主键。产品标识号。指向 Product.ProductID 的外键。 |
OperationSequence |
smallint |
非空 |
主键。指示生产过程序列。 |
LocationID |
smallint |
非空 |
零件的生产地点。指向 Location.LocationID 的外键。 |
ScheduledStartDate |
datetime |
非空 |
计划的生产开始日期。 |
ScheduledEndDate |
datetime |
非空 |
计划的生产结束日期。 |
ActualStartDate |
datetime |
空 |
实际的生产开始日期。 |
ActualEndDate |
datetime |
空 |
实际的生产结束日期。 |
ActualResourcesHrs |
decimal (9,4) |
空 |
生产车间用于生产该产品的工时数。 |
PlannedCost |
money |
非空 |
每个生产车间生产该产品的预计生产成本。 |
ActualCost |
money |
空 |
每个生产车间生产该产品的实际生产成本。 |
ModifiedDate |
datetime |
非空 |
行的上次更新日期和时间。 |