Skip to content

Instantly share code, notes, and snippets.

@sohangp
Created November 19, 2019 20:18
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 sohangp/3881bd062e34fa627fd6285e61c1381f to your computer and use it in GitHub Desktop.
Save sohangp/3881bd062e34fa627fd6285e61c1381f to your computer and use it in GitHub Desktop.
Creating the Student Table
CREATE TABLE public.student
(
id integer NOT NULL,
address character varying(255),
email character varying(255),
name character varying(255),
CONSTRAINT student_pkey PRIMARY KEY (id)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment