Difference between revisions of "Sales.ShoppingCartItem (table)"
| (3 intermediate revisions 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 | ||
| − | |- | + | |- valign="top" |
| + | | '''Description | ||
| + | | 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 15: | Line 17: | ||
| '''Nullable | | '''Nullable | ||
| '''Default | | '''Default | ||
| − | | ''' | + | | '''Description |
| − | + | ||
| − | + | |- valign="top" | |
| − | |- | ||
| ShoppingCartItemID | | ShoppingCartItemID | ||
| int | | int | ||
| not null | | not null | ||
| | | | ||
| − | | | + | | Primary key for ShoppingCartItem records. |
| − | + | |- valign="top" | |
| − | |- | ||
| ShoppingCartID | | ShoppingCartID | ||
| nvarchar(50) | | nvarchar(50) | ||
| not null | | not null | ||
| | | | ||
| − | | | + | | Shopping cart identification number. |
| − | + | |- valign="top" | |
| − | |- | ||
| Quantity | | Quantity | ||
| int | | int | ||
| not null | | not null | ||
| ((1)) | | ((1)) | ||
| − | | | + | | Product quantity ordered. |
| − | + | |- valign="top" | |
| − | |- | ||
| ProductID | | ProductID | ||
| int | | int | ||
| not null | | not null | ||
| | | | ||
| − | | | + | | Product ordered. Foreign key to Product.ProductID. |
| − | + | |- valign="top" | |
| − | |- | ||
| DateCreated | | DateCreated | ||
| datetime | | datetime | ||
| not null | | not null | ||
| (getdate()) | | (getdate()) | ||
| − | | | + | | Date the time the record was created. |
| − | + | |- valign="top" | |
| − | |- | ||
| ModifiedDate | | ModifiedDate | ||
| datetime | | datetime | ||
| not null | | not null | ||
| (getdate()) | | (getdate()) | ||
| + | | 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 69: | Line 99: | ||
| '''Column | | '''Column | ||
| '''Referenced Column | | '''Referenced Column | ||
| − | + | ||
| − | |- | + | |- valign="top" |
| [[Production.Product_(table)|Production.Product]] | | [[Production.Product_(table)|Production.Product]] | ||
| ProductID | | ProductID | ||
| ProductID | | ProductID | ||
|} | |} | ||
| + | |||
| + | === 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]] | ||
| + | |||
| + | |} | ||
| + | |||
| + | |||
== automatically generated == | == automatically generated == | ||
| Line 82: | Line 128: | ||
| Sales.ShoppingCartItem | | Sales.ShoppingCartItem | ||
|- valign="top" | |- valign="top" | ||
| − | |||
| '''Description | | '''Description | ||
| Contains online customer orders until the order is submitted or cancelled. | | Contains online customer orders until the order is submitted or cancelled. | ||
|- | |- | ||
| − | |||
|} | |} | ||
Latest revision as of 23:17, 23 June 2010
Contents
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 |