Skip to content

Instantly share code, notes, and snippets.

@corespider
Last active July 6, 2020 17:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save corespider/a94b05243f7d60c7d2bca5881225eac2 to your computer and use it in GitHub Desktop.
Save corespider/a94b05243f7d60c7d2bca5881225eac2 to your computer and use it in GitHub Desktop.
CoreSpider- Employee Tables
CREATE TABLE [dbo].[EmployeeDetails](
[EmpID] [int] NOT NULL,
[EmpName] [varchar](50) NULL,
[Mobile] [varchar](10) NULL,
[PresentAddress] [varchar](100) NULL,
[Area] [varchar](50) NULL,
[City] [varchar](50) NULL,
[Country] [varchar](50) NULL,
[Qualification] [varchar](50) NULL,
[Email] [varchar](50) NULL,
CONSTRAINT [PK_EmployeeDetails] PRIMARY KEY CLUSTERED
(
[EmpID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment