I have a table that I am trying to update multiple values at once. Here is the table schema:
Column | Type | Modifiers
---------------+---------+-----------
user_id | integer |
subservice_id | integer |
I have the user_id
and want to insert multiple subservice_id
's at once. Is there a syntax in Postgres
that will let me do something like this
insert into user_subservices(user_id, subservice_id) values(1, [1, 2, 3]);
How would I do this?
Try:
Demo: http://www.sqlfiddle.com/#!15/9a006/1