Name |
Value |
Not For Replication |
|
CountryRegionCurrency column |
CountryRegion column |
Type |
CountryRegionCode |
CountryRegionCode |
nvarchar |
Name |
Value |
MS_Description |
Foreign key constraint referencing CountryRegion.CountryRegionCode. |
/ -->
ALTER TABLE [Sales].[CountryRegionCurrency]
WITH CHECK
ADD CONSTRAINT [FK_CountryRegionCurrency_CountryRegion_CountryRegionCode]
FOREIGN KEY ([CountryRegionCode]) REFERENCES [Person].[CountryRegion] ([CountryRegionCode])
ALTER TABLE [Sales].[CountryRegionCurrency]
CHECK CONSTRAINT [FK_CountryRegionCurrency_CountryRegion_CountryRegionCode]
GO
EXEC sp_addextendedproperty N'MS_Description', N'Foreign key constraint referencing CountryRegion.CountryRegionCode.', 'SCHEMA', N'Sales', 'TABLE', N'CountryRegionCurrency', 'CONSTRAINT', N'FK_CountryRegionCurrency_CountryRegion_CountryRegionCode'
GO
|