Re: Multi-row insert using a Function

From: Jasen Betts <jasen(at)xnet(dot)co(dot)nz>
To: pgsql-novice(at)postgresql(dot)org
Subject: Re: Multi-row insert using a Function
Date: 2010-11-25 01:40:10
Message-ID: ickepq$lia$2@reversiblemaps.ath.cx
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

On 2010-11-24, Michael Rowan <mike(dot)rowan(at)internode(dot)on(dot)net> wrote:
> Very new to Postgres and functions.
>
> Using PostgreSQL 9 and pl/pgsql I wish to use a function to insert several rows into a table. The table has text and integer columns. Another function inserts a single row correctly, but I do not see how to arrange the data for the multiple row function. I assume it needs to be in an array, but I cannot find an example in the docs, and am darned if I can send it something acceptable.
>
> Any example would help. Thanks.

what are you trying to do?

possible solutions include one multi-row insert, several single-row inserts, or a
single single-row insert repeated multiple times using a loop.

--
⚂⚃ 100% natural

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Jasen Betts 2010-11-25 01:48:25 Re: Postgresql on windows / solid state
Previous Message Mladen Gogala 2010-11-25 01:36:20 Re: HELP WITH A QUERY