Re: Is this a bug?

Поиск
Список
Период
Сортировка
От Roland Roberts
Тема Re: Is this a bug?
Дата
Msg-id m2ofm4gfxs.fsf@tycho.rlent.pnet
обсуждение исходный текст
Ответ на Re: Is this a bug?  ("Jack Gao" <wei@gaofamily.org>)
Список pgsql-sql
>>>>> "Jack" == Jack Gao <wei@gaofamily.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@rlenter.com                     76-15 113th Street, Apt 3B
roland@astrofoto.org                       Forest Hills, NY 11375


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

Предыдущее
От: "Josh Berkus"
Дата:
Сообщение: Re: handling exceptions, really not simple... :-((
Следующее
От: Roland Roberts
Дата:
Сообщение: Re: Help with INSERT into 2 tables