Created
October 8, 2020 22:48
-
-
Save oxlb/17cec7f52ee7870e429f7a94a2d3a208 to your computer and use it in GitHub Desktop.
golang students
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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