Re: Postgres and multiple updates in one statement

Поиск
Список
Период
Сортировка
От Joshua D. Drake
Тема Re: Postgres and multiple updates in one statement
Дата
Msg-id 1248716381.14534.0.camel@jd-laptop.pragmaticzealot.org
обсуждение исходный текст
Ответ на Re: Postgres and multiple updates in one statement  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
On Mon, 2009-07-27 at 11:50 -0400, Tom Lane wrote:
> Scott Marlowe <scott.marlowe@gmail.com> writes:
> > On Mon, Jul 27, 2009 at 8:48 AM, Jamie
> > Lawrence-Jenner<jamie.jenner@autovhc.co.uk> wrote:
> >> Our update statements are as follows
> >>
> >> Update table set col1=x,col2=y where pkid=1;
> >> Update table set col1=x,col2=y where pkid=2;
> >> Update table set col1=x,col2=y where pkid=3;
> >>
> >> Very simple and straight forward. Sometimes there could be as many as 50
> >> update statements to process.
>
> > Might as well fire them each as separate statements inside one
> > transaction, since pkid is unique and non-repeated in the updates.
>
> If they're all exactly the same pattern like that, it might be worth the
> trouble to set up a prepared statement.

Seems like an opportunity for the use of a function.

Joshua D. Drake


>
>             regards, tom lane
>
--
PostgreSQL - XMPP: jdrake@jabber.postgresql.org
   Consulting, Development, Support, Training
   503-667-4564 - http://www.commandprompt.com/
   The PostgreSQL Company, serving since 1997


В списке pgsql-general по дате отправления:

Предыдущее
От: "Jamie Lawrence-Jenner"
Дата:
Сообщение: Re: Postgres and multiple updates in one statement
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Calculating the difference between timetz values