Skip to content

Instantly share code, notes, and snippets.

@nishanc
Created May 4, 2021 12:24
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 nishanc/ade6ff040c2990e287b255438f827dd3 to your computer and use it in GitHub Desktop.
Save nishanc/ade6ff040c2990e287b255438f827dd3 to your computer and use it in GitHub Desktop.
CREATE TABLE [TPHUsers] (
[Id] int NOT NULL IDENTITY,
[Username] nvarchar(max) NULL,
[Email] nvarchar(max) NULL,
[UserType] nvarchar(max) NOT NULL,
[CGPA] nvarchar(max) NULL,
[Major] nvarchar(max) NULL,
[Designation] nvarchar(max) NULL,
[Speciality] nvarchar(max) NULL,
CONSTRAINT [PK_TPHUsers] PRIMARY KEY ([Id])
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment