Is there a batch/bulk UPDATE syntax available? - Mailing list pgsql-admin

From Gnanakumar
Subject Is there a batch/bulk UPDATE syntax available?
Date
Msg-id 005b01cbc399$e8d99fa0$ba8cdee0$@com
Whole thread Raw
Responses Re: Is there a batch/bulk UPDATE syntax available?  (Thomas Kellerer <spam_eater@gmx.net>)
Re: Is there a batch/bulk UPDATE syntax available?  (pasman pasmański <pasman.p@gmail.com>)
Re: Is there a batch/bulk UPDATE syntax available?  (Keith Gabryelski <keith@fluentmobile.com>)
List pgsql-admin
Hi,

Is there a batch/bulk UPDATE query syntax available in PostgreSQL, similar
to multirow VALUES syntax available for INSERT?

INSERT Multirow VALUES syntax example:
INSERT INTO films (code, title, did, date_prod, kind) VALUES
    ('B6717', 'Tampopo', 110, '1985-02-10', 'Comedy'),
    ('HG120', 'The Dinner Game', 140, DEFAULT, 'Comedy');

There is a situation in my application, where I am performing lots and lots
of updates on individual rows. I am trying to figure out how to make the
updates faster.

Any other ideas/ways to make updates faster are highly appreciated.

Regards,
Gnanam


pgsql-admin by date:

Previous
From: Christian Ullrich
Date:
Subject: Re: Select Command in Procedures
Next
From: Thomas Kellerer
Date:
Subject: Re: Is there a batch/bulk UPDATE syntax available?