Tables [dbo].[ShCountries]
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count (~)4
Created11:24:44 AM Wednesday, May 9, 2018
Last Modified11:24:48 AM Wednesday, May 9, 2018
KeyNameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key PK_ShCountries: CountryIDCountryIDint4
False
1 - 1
Codevarchar(3)3
False
Namevarchar(64)64
False
KeyNameKey ColumnsUnique
Cluster Primary Key PK_ShCountries: CountryIDPK_ShCountriesCountryID
True
CREATE TABLE [dbo].[ShCountries]
(
[CountryID] [int] NOT NULL IDENTITY(1, 1),
[Code] [varchar] (3) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[Name] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ShCountries] ADD CONSTRAINT [PK_ShCountries] PRIMARY KEY CLUSTERED  ([CountryID]) ON [PRIMARY]
GO