AdventureWorks
| Table Name: | Production.ProductModel |
| Description: | Product model classification. |
| Primary Keys: | ProductModelID |
| Field | Type | Defaults | Nulls? | Comments |
|---|---|---|---|---|
| ProductModelID | int - Identity | None | No | Primary key for ProductModel records. |
| Name | nvarchar (50) | None | No | Product model description. |
| CatalogDescription | xml | None | Yes | Detailed product catalog information in xml format. |
| Instructions | xml | None | Yes | Manufacturing instructions in xml format. |
| rowguid | uniqueidentifier | (newid()) | No | ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample. |
| ModifiedDate | datetime | (getdate()) | No | Date and time the record was last updated. |
| Index | Clustered? | Unique? | Fields |
|---|---|---|---|
| PK_ProductModel_ProductModelID | Yes | Yes | ProductModelID |
| AK_ProductModel_Name | No | Yes | Name |
| AK_ProductModel_rowguid | No | Yes | rowguid |
| Primary Key as Foreign Key Constraint | Affected Table | Affected Field |
|---|---|---|
| FK_Product_ProductModel_ProductModelID | Production.Product | ProductModelID |
| FK_ProductModelIllustration_ProductModel_ProductModelID | Production.ProductModelIllustration | ProductModelID |
| FK_ProductModelProductDescriptionCulture_ProductModel_ProductModelID | Production.ProductModelProductDescriptionCulture | ProductModelID |