Relationship: FK_PersonPhone_Person_BusinessEntityID on PersonPhone

CollapseAll image

Collapse image Relationship properties


 Name   Value 
 Not For Replication   

Collapse image FK columns


PersonPhone column Person column Type
BusinessEntityID BusinessEntityID int

Collapse image SQL


ALTER TABLE [Person].[PersonPhone]
    WITH CHECK
    ADD CONSTRAINT [FK_PersonPhone_Person_BusinessEntityID]
    FOREIGN KEY ([BusinessEntityID]) REFERENCES [Person].[Person] ([BusinessEntityID])
ALTER TABLE [Person].[PersonPhone]
    CHECK CONSTRAINT [FK_PersonPhone_Person_BusinessEntityID]

GO

Collapse image See also


[Person].[PersonPhone]

[Person].[Person]