| Primary Table Owner: | HumanResources |
| Primary Table: | Department |
| Primary Key or Unique Constraint: | PK_Department_DepartmentID |
| Delete Cascade: | |
| Update Cascade: | |
| Description: | Foreign key constraint referencing Department.DepartmentID. |
| Column | Reference Column | Type | |
| DepartmentID | DepartmentID | smallint |
ALTER TABLE [HumanResources].[EmployeeDepartmentHistory] ADD CONSTRAINT [FK_EmployeeDepartmentHistory_Department_DepartmentID] FOREIGN KEY
(
[DepartmentID]
) REFERENCES [Department] (
[DepartmentID]
)
GO
See Also
Table [HumanResources.Department]