Skip to content

Instantly share code, notes, and snippets.

@mattgaspar
Created May 15, 2018 02:46
Show Gist options
  • Save mattgaspar/edafd8d51f6dad797e76788eb9f1f3d1 to your computer and use it in GitHub Desktop.
Save mattgaspar/edafd8d51f6dad797e76788eb9f1f3d1 to your computer and use it in GitHub Desktop.
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