| Primary Table Owner: | dbo |
| Primary Table: | CustomerDemographics |
| Primary Key or Unique Constraint: | PK_CustomerDemographics |
| Delete Cascade: | |
| Update Cascade: | |
| Description: |
| Column | Reference Column | Type | |
|
|
CustomerTypeID | CustomerTypeID | nchar |
ALTER TABLE [dbo].[CustomerCustomerDemo] ADD CONSTRAINT [FK_CustomerCustomerDemo] FOREIGN KEY
(
[CustomerTypeID]
) REFERENCES [CustomerDemographics] (
[CustomerTypeID]
)
GO
See Also
Table [dbo.CustomerDemographics]