Skip to content

Instantly share code, notes, and snippets.

@XI4222-Irshad
Created May 31, 2018 14:56
Show Gist options
  • Save XI4222-Irshad/c5d8e717e3d0f839eaa7044058a7728f to your computer and use it in GitHub Desktop.
Save XI4222-Irshad/c5d8e717e3d0f839eaa7044058a7728f to your computer and use it in GitHub Desktop.
Create Table Employee
CREATE TABLE "tbl_employee" (
"employee_id" SERIAL,
"full_name" STRING(100),
"department" STRING(50),
"designation" STRING(50),
"created_at" TIMESTAMPTZ,
"updated_at" TIMESTAMPTZ,
PRIMARY KEY ("employee_id")
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment