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