Closed
Description
I have n
number of items. I would like to add them all with a single insert query.
insert into testtable(id,name) values (1,"jack"),(2,"john"),(3,"jill");
I have an array for my rows, and I like to add them all in. So, if I provide pg
the correct string (after manually forming it in a variable) it works perfectly fine, but this all seemed a bit pointless to me. I expect pg to handle arrays for me as well, but I'm unable to find the option for that. So I'm asking, is this possible?
How can I insert multiple rows from an array of rows, with a single insert query with this library?
Would love to know. Thank you.