Sales.ContactCreditCard Table
Information
| Name | ContactCreditCard |
| Schema | Sales |
| Row Count | 0 |
| Data Size | |
| Index Size | |
| Reserved Size | |
| Unused Size | |
| Created | 29.3.2010. 21:58:18 |
| Modified | 29.3.2010. 21:58:54 |
Extended Properties
| Name | Type | Property Name | Value |
| ContactCreditCard | TABLE | MS_Description | Cross-reference table mapping customers in the Contact table to their credit card information in the CreditCard table. |
Columns
| PK | Key | Identity | Name | Data Type | Allow Nulls | Collation | References | Default | Computed | Compute Expression |
|   |   |   | ContactID | int |   | | Person.Contact.ContactID | |   | |
|   |   |   | CreditCardID | int |   | | Sales.CreditCard.CreditCardID | |   | |
| |   |   | ModifiedDate | datetime |   | | | (getdate()) |   | |
Indexes
Foreign Key Constraints
SQL Script
CREATE TABLE [Sales].[ContactCreditCard] (
[ContactID] int NOT NULL,
[CreditCardID] int NOT NULL,
[ModifiedDate] datetime NOT NULL DEFAULT (getdate())
);