Re: How to use read uncommitted transaction level and set update order

Поиск
Список
Период
Сортировка
От Andrus
Тема Re: How to use read uncommitted transaction level and set update order
Дата
Msg-id F1E1EFEE34194DAB98858CB65B654DE3@andrusnotebook
обсуждение исходный текст
Ответ на Re: How to use read uncommitted transaction level and set update order  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: How to use read uncommitted transaction level and set update order  (Christophe Pettus <xof@thebuild.com>)
Список pgsql-general
> I would be quite surprised if there are any SQL databases that do this
> differently.

FoxPro's and probably dBase's do it differently.

CREATE CURSOR t ( a i, b i )
INSERT INTO t VALUES (1,2)
UPDATE t SET a=3, b=a
SELECT * FROM t

returns 3 for b

Andrus.

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

Предыдущее
От: "Andrus"
Дата:
Сообщение: How to find string intersection
Следующее
От: Postgres User
Дата:
Сообщение: Re: Selecting from table into an array var