Skip to content

Instantly share code, notes, and snippets.

@ranjeetpatil
Created November 14, 2015 15:45
CREATE TABLE tbl_Employee
(
EmpId INT Primary key IDENTITY (100, 1) NOT NULL,
EmpName VARCHAR (50) NOT NULL,
EmpDesig VARCHAR (50) NOT NULL,
EmpSalary MONEY NOT NULL
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment