Name |
Value |
Not For Replication |
|
BusinessEntityContact column |
Person column |
Type |
PersonID |
BusinessEntityID |
int |
Name |
Value |
MS_Description |
Foreign key constraint referencing Person.BusinessEntityID. |
/ -->
ALTER TABLE [Person].[BusinessEntityContact]
WITH CHECK
ADD CONSTRAINT [FK_BusinessEntityContact_Person_PersonID]
FOREIGN KEY ([PersonID]) REFERENCES [Person].[Person] ([BusinessEntityID])
ALTER TABLE [Person].[BusinessEntityContact]
CHECK CONSTRAINT [FK_BusinessEntityContact_Person_PersonID]
GO
EXEC sp_addextendedproperty N'MS_Description', N'Foreign key constraint referencing Person.BusinessEntityID.', 'SCHEMA', N'Person', 'TABLE', N'BusinessEntityContact', 'CONSTRAINT', N'FK_BusinessEntityContact_Person_PersonID'
GO
|