Properties

Primary Table Owner: HumanResources 
Primary Table: Employee 
Primary Key or Unique Constraint: PK_Employee_EmployeeID 
Delete Cascade:  
Update Cascade:  
Description: Foreign key constraint referencing Employee.EmployeeID. 

Relationship Columns

Column Reference Column Type
  EmployeeID  EmployeeID  int 
Total: 1 trigger(s)

SQL

ALTER TABLE [HumanResources].[EmployeeDepartmentHistory] ADD CONSTRAINT [FK_EmployeeDepartmentHistory_Employee_EmployeeID] FOREIGN KEY
    (
        [EmployeeID]
    ) REFERENCES [Employee] (
        [EmployeeID]
    )
GO

See Also

Table [HumanResources.Employee]
Table [HumanResources.EmployeeDepartmentHistory]