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