Created
May 15, 2018 02:46
-
-
Save mattgaspar/edafd8d51f6dad797e76788eb9f1f3d1 to your computer and use it in GitHub Desktop.
This file contains 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
pg.query( | |
"INSERT INTO testtable (id, name) SELECT * FROM UNNEST ($1::int[], $2::text[])", | |
[ | |
[1, 2, 3], | |
["Jack", "John", "Jill"], | |
] | |
) | |
Source: https://github.com/brianc/node-postgres/issues/957#issuecomment-295583050 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment