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