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