Primary Table Owner: | dbo |
Primary Table: | Suppliers |
Primary Key or Unique Constraint: | PK_Suppliers |
Delete Cascade: | |
Update Cascade: | |
Description: |
Column | Reference Column | Type | |
|
SupplierID | SupplierID | int |
ALTER TABLE [dbo].[Products] ADD CONSTRAINT [FK_Products_Suppliers] FOREIGN KEY
(
[SupplierID]
) REFERENCES [Suppliers] (
[SupplierID]
)
GO
See Also
Table [dbo.Suppliers]