Difference between revisions of "Sales.ShoppingCartItem (table)"
(One intermediate revision by the same user not shown) | |||
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 | ||
| Sales.ShoppingCartItem | | Sales.ShoppingCartItem | ||
Line 8: | Line 8: | ||
| '''Description | | '''Description | ||
| Contains online customer orders until the order is submitted or cancelled. | | Contains online customer orders until the order is submitted or cancelled. | ||
− | |||
|} | |} | ||
− | + | === Columns === | |
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
|- style="background:silver" | |- style="background:silver" | ||
Line 18: | Line 17: | ||
| '''Nullable | | '''Nullable | ||
| '''Default | | '''Default | ||
− | | '''Description | + | | '''Description |
− | + | ||
|- valign="top" | |- valign="top" | ||
| ShoppingCartItemID | | ShoppingCartItemID | ||
Line 25: | Line 24: | ||
| not null | | not null | ||
| | | | ||
− | | Primary key for ShoppingCartItem records. | + | | Primary key for ShoppingCartItem records. |
|- valign="top" | |- valign="top" | ||
| ShoppingCartID | | ShoppingCartID | ||
Line 31: | Line 30: | ||
| not null | | not null | ||
| | | | ||
− | | Shopping cart identification number. | + | | Shopping cart identification number. |
|- valign="top" | |- valign="top" | ||
| Quantity | | Quantity | ||
Line 37: | Line 36: | ||
| not null | | not null | ||
| ((1)) | | ((1)) | ||
− | | Product quantity ordered. | + | | Product quantity ordered. |
|- valign="top" | |- valign="top" | ||
| ProductID | | ProductID | ||
Line 43: | Line 42: | ||
| not null | | not null | ||
| | | | ||
− | | Product ordered. Foreign key to Product.ProductID. | + | | Product ordered. Foreign key to Product.ProductID. |
|- valign="top" | |- valign="top" | ||
| DateCreated | | DateCreated | ||
Line 49: | Line 48: | ||
| not null | | not null | ||
| (getdate()) | | (getdate()) | ||
− | | Date the time the record was created. | + | | Date the time the record was created. |
|- valign="top" | |- valign="top" | ||
| ModifiedDate | | ModifiedDate | ||
Line 55: | Line 54: | ||
| not null | | not null | ||
| (getdate()) | | (getdate()) | ||
− | | Date and time the record was last updated. | + | | Date and time the record was last updated. |
+ | |} | ||
+ | |||
+ | === Primary Key === | ||
+ | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
+ | |- style="background:silver" | ||
+ | | '''Primary Key | ||
+ | | '''Columns | ||
+ | |- valign="top" | ||
+ | | PK_ShoppingCartItem_ShoppingCartItemID | ||
+ | | ShoppingCartItemID | ||
+ | |} | ||
+ | |||
+ | === Indexes === | ||
+ | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
+ | |- style="background:silver" | ||
+ | | '''Index | ||
+ | | '''Type | ||
+ | | '''Columns | ||
+ | |||
+ | |- valign="top" | ||
+ | | IX_ShoppingCartItem_ShoppingCartID_ProductID | ||
+ | | | ||
+ | | ShoppingCartID, ProductID | ||
|} | |} | ||
+ | === Check Constraints === | ||
+ | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
+ | |- style="background:silver" | ||
+ | | '''Check Constraint | ||
+ | | '''Expression | ||
+ | | '''Description | ||
+ | |- valign="top" | ||
+ | | CK_ShoppingCartItem_Quantity | ||
+ | | ([Quantity]>=(1)) | ||
+ | | Check constraint [Quantity] >= (1) | ||
+ | |} | ||
+ | === Foreign Keys === | ||
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
|- style="background:silver" | |- style="background:silver" | ||
Line 65: | Line 99: | ||
| '''Column | | '''Column | ||
| '''Referenced Column | | '''Referenced Column | ||
− | + | ||
− | |- | + | |- valign="top" |
| [[Production.Product_(table)|Production.Product]] | | [[Production.Product_(table)|Production.Product]] | ||
| ProductID | | ProductID | ||
Line 72: | Line 106: | ||
|} | |} | ||
+ | === References === | ||
+ | {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" | ||
+ | |- style="background:silver" | ||
+ | | '''Dependency Type | ||
+ | | '''Object Type | ||
+ | | '''Referenced Object | ||
+ | |||
+ | |- valign="top" | ||
+ | | Schema | ||
+ | | Schema | ||
+ | | [[Sales_(schema)|Sales]] | ||
+ | |||
+ | |} | ||
Latest revision as of 00:17, 24 June 2010
Contents
[hide]wikibot[edit]
Table | Sales.ShoppingCartItem |
Description | Contains online customer orders until the order is submitted or cancelled. |
Columns[edit]
Column | Data Type | Nullable | Default | Description |
ShoppingCartItemID | int | not null | Primary key for ShoppingCartItem records. | |
ShoppingCartID | nvarchar(50) | not null | Shopping cart identification number. | |
Quantity | int | not null | ((1)) | Product quantity ordered. |
ProductID | int | not null | Product ordered. Foreign key to Product.ProductID. | |
DateCreated | datetime | not null | (getdate()) | Date the time the record was created. |
ModifiedDate | datetime | not null | (getdate()) | Date and time the record was last updated. |
Primary Key[edit]
Primary Key | Columns |
PK_ShoppingCartItem_ShoppingCartItemID | ShoppingCartItemID |
Indexes[edit]
Index | Type | Columns |
IX_ShoppingCartItem_ShoppingCartID_ProductID | ShoppingCartID, ProductID |
Check Constraints[edit]
Check Constraint | Expression | Description |
CK_ShoppingCartItem_Quantity | ([Quantity]>=(1)) | Check constraint [Quantity] >= (1) |
Foreign Keys[edit]
Relation | Column | Referenced Column |
Production.Product | ProductID | ProductID |
References[edit]
Dependency Type | Object Type | Referenced Object |
Schema | Schema | Sales |
automatically generated[edit]
Table | Sales.ShoppingCartItem |
Description | Contains online customer orders until the order is submitted or cancelled. |
Column | Data Type | Nullable | Default | Description / PK / Index |
ShoppingCartItemID | int | not null | Primary key for ShoppingCartItem records. PK_ShoppingCartItem_ShoppingCartItemID | |
ShoppingCartID | nvarchar(50) | not null | Shopping cart identification number. IX_ShoppingCartItem_ShoppingCartID_ProductID | |
Quantity | int | not null | (1) | Product quantity ordered. |
ProductID | int | not null | Product ordered. Foreign key to Product.ProductID. IX_ShoppingCartItem_ShoppingCartID_ProductID | |
DateCreated | datetime | not null | (GETDATE()) | Date the time the record was created. |
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 |
Schema | Schema | Sales |