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