Difference between revisions of "Production.ProductReview (table)"
| Line 2: | Line 2: | ||
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
| − | |- | + | |- valign="top" |
| '''Table | | '''Table | ||
| Production.ProductReview | | Production.ProductReview | ||
| Line 8: | Line 8: | ||
| '''Description | | '''Description | ||
| Customer reviews of products they have purchased. | | Customer reviews of products they have purchased. | ||
| − | |||
|} | |} | ||
| − | |||
=== Columns === | === Columns === | ||
| Line 20: | Line 18: | ||
| '''Default | | '''Default | ||
| '''Description | | '''Description | ||
| − | + | ||
|- valign="top" | |- valign="top" | ||
| ProductReviewID | | ProductReviewID | ||
| Line 76: | Line 74: | ||
| '''Primary Key | | '''Primary Key | ||
| '''Columns | | '''Columns | ||
| − | |- | + | |- valign="top" |
| PK_ProductReview_ProductReviewID | | PK_ProductReview_ProductReviewID | ||
| ProductReviewID | | ProductReviewID | ||
| Line 87: | Line 85: | ||
| '''Type | | '''Type | ||
| '''Columns | | '''Columns | ||
| − | + | ||
| − | |- | + | |- valign="top" |
| IX_ProductReview_ProductID_Name | | IX_ProductReview_ProductID_Name | ||
| | | | ||
| Line 100: | Line 98: | ||
| '''Expression | | '''Expression | ||
| '''Description | | '''Description | ||
| − | + | ||
| − | |- | + | |- valign="top" |
| CK_ProductReview_Rating | | CK_ProductReview_Rating | ||
| ([Rating]>=(1) AND [Rating]<=(5)) | | ([Rating]>=(1) AND [Rating]<=(5)) | ||
| Line 113: | Line 111: | ||
| '''Column | | '''Column | ||
| '''Referenced Column | | '''Referenced Column | ||
| − | + | ||
| − | |- | + | |- valign="top" |
| [[Production.Product_(table)|Production.Product]] | | [[Production.Product_(table)|Production.Product]] | ||
| ProductID | | ProductID | ||
| Line 127: | Line 125: | ||
| '''Referenced Object | | '''Referenced Object | ||
| − | |- | + | |- valign="top" |
| Data Type | | Data Type | ||
| Type | | Type | ||
| [[dbo.Name_(type)|dbo.Name]] | | [[dbo.Name_(type)|dbo.Name]] | ||
| − | |- | + | |- valign="top" |
| Schema | | Schema | ||
| Schema | | Schema | ||
Latest revision as of 23:16, 23 June 2010
Contents
wikibot[edit]
| Table | Production.ProductReview |
| Description | Customer reviews of products they have purchased. |
Columns[edit]
| Column | Data Type | Nullable | Default | Description |
| ProductReviewID | int | not null | Primary key for ProductReview records. | |
| ProductID | int | not null | Product identification number. Foreign key to Product.ProductID. | |
| ReviewerName | dbo.Name | not null | Name of the reviewer. | |
| ReviewDate | datetime | not null | (getdate()) | Date review was submitted. |
| EmailAddress | nvarchar(50) | not null | Reviewer's e-mail address. | |
| Rating | int | not null | Product rating given by the reviewer. Scale is 1 to 5 with 5 as the highest rating. | |
| Comments | nvarchar(3850) | null | Reviewer's comments | |
| ModifiedDate | datetime | not null | (getdate()) | Date and time the record was last updated. |
Primary Key[edit]
| Primary Key | Columns |
| PK_ProductReview_ProductReviewID | ProductReviewID |
Indexes[edit]
| Index | Type | Columns |
| IX_ProductReview_ProductID_Name | ProductID, ReviewerName, Comments |
Check Constraints[edit]
| Check Constraint | Expression | Description |
| CK_ProductReview_Rating | ([Rating]>=(1) AND [Rating]<=(5)) | Check constraint [Rating] BETWEEN (1) AND (5) |
Foreign Keys[edit]
| Relation | Column | Referenced Column |
| Production.Product | ProductID | ProductID |
References[edit]
| Dependency Type | Object Type | Referenced Object |
| Data Type | Type | dbo.Name |
| Schema | Schema | Production |
automatically generated[edit]
| Table | Production.ProductReview |
| Description | Customer reviews of products they have purchased. |
| Column | Data Type | Nullable | Default | Description / PK / Index |
| ProductReviewID | int | not null | Primary key for ProductReview records. PK_ProductReview_ProductReviewID | |
| ProductID | int | not null | Product identification number. Foreign key to Product.ProductID. IX_ProductReview_ProductID_Name | |
| ReviewerName | Name | not null | Name of the reviewer. IX_ProductReview_ProductID_Name | |
| ReviewDate | datetime | not null | (GETDATE()) | Date review was submitted. |
| EmailAddress | nvarchar(50) | not null | Reviewer's e-mail address. | |
| Rating | int | not null | Product rating given by the reviewer. Scale is 1 to 5 with 5 as the highest rating. | |
| Comments | nvarchar(3850) | not null | Reviewer's comments IX_ProductReview_ProductID_Name | |
| ModifiedDate | datetime | not null | (GETDATE()) | Date and time the record was last updated. |
| Relation | Column | Referenced Column |
| Production.Product | ProductID | ProductID |
| Dependency Type | Object Type | Referenced Object |
| Data Type | Type | dbo.Name |
| Schema | Schema | Production |