| Primary Table Owner: | Production |
| Primary Table: | Location |
| Primary Key or Unique Constraint: | PK_Location_LocationID |
| Delete Cascade: | |
| Update Cascade: | |
| Description: | Foreign key constraint referencing Location.LocationID. |
| Column | Reference Column | Type | |
| LocationID | LocationID | smallint |
ALTER TABLE [Production].[ProductInventory] ADD CONSTRAINT [FK_ProductInventory_Location_LocationID] FOREIGN KEY
(
[LocationID]
) REFERENCES [Location] (
[LocationID]
)
GO
See Also
Table [Production.Location]