Difference between revisions of "Sales.CreditCard (table)"

From dbscript Online Help
Jump to: navigation, search
Line 107: Line 107:
 
| not null
 
| not null
 
|  
 
|  
| Primary key for CreditCard records.PK_CreditCard_CreditCardID
+
| Primary key for CreditCard records.<br />PK_CreditCard_CreditCardID
 
|- valign="top"
 
|- valign="top"
 
| CardType
 
| CardType
Line 113: Line 113:
 
| not null
 
| not null
 
|  
 
|  
| Credit card name.
+
| Credit card name.<br />
 
|- valign="top"
 
|- valign="top"
 
| CardNumber
 
| CardNumber
Line 119: Line 119:
 
| not null
 
| not null
 
|  
 
|  
| Credit card number.AK_CreditCard_CardNumber
+
| Credit card number.<br />AK_CreditCard_CardNumber
 
|- valign="top"
 
|- valign="top"
 
| ExpMonth
 
| ExpMonth
Line 125: Line 125:
 
| not null
 
| not null
 
|  
 
|  
| Credit card expiration month.
+
| Credit card expiration month.<br />
 
|- valign="top"
 
|- valign="top"
 
| ExpYear
 
| ExpYear
Line 131: Line 131:
 
| not null
 
| not null
 
|  
 
|  
| Credit card expiration year.
+
| Credit card expiration year.<br />
 
|- valign="top"
 
|- valign="top"
 
| ModifiedDate
 
| ModifiedDate
Line 137: Line 137:
 
| not null
 
| not null
 
| (GETDATE())
 
| (GETDATE())
| Date and time the record was last updated.
+
| Date and time the record was last updated.<br />
 
|}
 
|}
  

Revision as of 01:09, 27 November 2009

wikibot

Table Sales.CreditCard


Column Data Type Nullable Default PK Index
CreditCardID int not null PK_CreditCard_CreditCardID
CardType nvarchar(50) not null
CardNumber nvarchar(25) not null AK_CreditCard_CardNumber
ExpMonth tinyint not null
ExpYear smallint not null
ModifiedDate datetime not null (getdate())


Detail Table Column Referencing Column
Sales.ContactCreditCard CreditCardID CreditCardID
Sales.SalesOrderHeader CreditCardID CreditCardID

automatically generated

Table Sales.CreditCard
Description Customer credit card information.


Column Data Type Nullable Default Description / PK / Index
CreditCardID int not null Primary key for CreditCard records.
PK_CreditCard_CreditCardID
CardType nvarchar(50) not null Credit card name.
CardNumber nvarchar(25) not null Credit card number.
AK_CreditCard_CardNumber
ExpMonth tinyint not null Credit card expiration month.
ExpYear smallint not null Credit card expiration year.
ModifiedDate datetime not null (GETDATE()) Date and time the record was last updated.


Detail Table Column Referencing Column
Sales.ContactCreditCard CreditCardID CreditCardID
Sales.SalesOrderHeader CreditCardID CreditCardID