Re: Is this a bug?

From: Roland Roberts <roland(at)astrofoto(dot)org>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: Is this a bug?
Date: 2001-11-15 16:24:47
Message-ID: m2ofm4gfxs.fsf@tycho.rlent.pnet
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

>>>>> "Jack" == Jack Gao <wei(at)gaofamily(dot)org> writes:

Jack> So, I can't use JOIN in UPDATE?

You are trying to update two different tables. Use a transaction
instead.

begin transaction;
update foo ....;
update bar ....;
end transaction;

roland
--
PGP Key ID: 66 BC 3B CD
Roland B. Roberts, PhD RL Enterprises
roland(at)rlenter(dot)com 76-15 113th Street, Apt 3B
roland(at)astrofoto(dot)org Forest Hills, NY 11375

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Roland Roberts 2001-11-15 16:26:41 Re: problem: index on number not honoured
Previous Message Roelof Sondaar 2001-11-15 16:21:51 How to use COPY in a function ?