Problem with self-join updates...

Поиск
Список
Период
Сортировка
От Benoit Menendez
Тема Problem with self-join updates...
Дата
Msg-id 002101c1b650$18f087a0$0201a8c0@osprey
обсуждение исходный текст
Ответы Re: Problem with self-join updates...  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
Список pgsql-sql
I have the following self-join update:
 
            update TABLE set PARENT_ID=parent.PARENT_ID
            from TABLE, TABLE parent
            where TABLE.PARENT_ID=parent.ID
            and parent.ID in (1,2,3,4)
This query is use to update a hierarchy before deleting specific records...
 
I get the following error:
 
    Table name "table" specified more than once
 
This appears to be a limitation of the update syntax which is not documented...
 
Is this something that will be fixed soon? or should I write this query differently?
 
Any suggestions?
 
Thanks for your help.
 
    Benoit

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: create index on function - why?
Следующее
От: Stephan Szabo
Дата:
Сообщение: Re: Problem with self-join updates...