Skip to content

Instantly share code, notes, and snippets.

@oxlb
Created October 8, 2020 22:48
Show Gist options
  • Save oxlb/17cec7f52ee7870e429f7a94a2d3a208 to your computer and use it in GitHub Desktop.
Save oxlb/17cec7f52ee7870e429f7a94a2d3a208 to your computer and use it in GitHub Desktop.
golang students
CREATE TABLE students
(
id bigint NOT NULL,
name text COLLATE pg_catalog."default",
CONSTRAINT student_pkey PRIMARY KEY (id)
);
INSERT INTO students(id, name) VALUES
(1, 'A'),
(2, 'B'),
(3, 'C');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment