On Mon, Nov 13, 2006 at 11:36:05 +0100,
Marko Rihtar <riki_fox(at)hotmail(dot)com> wrote:
>
> i'm trying to do update on multiple tables but don't know how.
> is something like this posible with postgresql?
I believe you need to use multiple update statements to do this. Each
update can only update one table. You can join with other tables to
select which rows to update, but that doesn't let you update more than
one table at once.