Skip to content

Instantly share code, notes, and snippets.

@gargighorai
Created December 8, 2016 12:14
Show Gist options
  • Save gargighorai/0f5a01576f2db809e0b81ae32d96a509 to your computer and use it in GitHub Desktop.
Save gargighorai/0f5a01576f2db809e0b81ae32d96a509 to your computer and use it in GitHub Desktop.
Contacts details
CREATE TABLE [dbo].[Contact]
(
[Id] INT IDENTITY(1,1) NOT NULL ,
[FirstName] VARCHAR(MAX) NULL,
[MiddleName] VARCHAR(50) NULL,
[LastName] VARCHAR(50) NULL,
[Address] NVARCHAR(MAX) NULL,
[ContactNo] NCHAR(100) NULL,
[EMailID] VARCHAR(50) NULL,
CONSTRAINT [PK_Contact] PRIMARY KEY ([Id]ASC)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment