Created
January 26, 2022 09:08
-
-
Save ftisiot/fc4024a42452fc9bc22c03224dd1de74 to your computer and use it in GitHub Desktop.
PostgreSQL Insert multiple rows in one go
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 (student_id INT, student_name VARCHAR(200)); | |
INSERT INTO students values (1, 'Francesco'), (2, 'Maria'), (3, 'Giuseppa'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment