Re: Help with UPDATE syntax

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Help with UPDATE syntax
Дата
Msg-id 13907.984671942@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Help with UPDATE syntax  (Jeff Putsch <putsch@mxim.com>)
Список pgsql-sql
Jeff Putsch <putsch@mxim.com> writes:
>     update   
>         user_group_map map 

Postgres doesn't allow UPDATE to use an alias for the target table
(SQL92 doesn't either).  Get rid of the alias name "map", and write
the full table name "user_group_map" in the places where "map" is
used in the WHERE clause.
        regards, tom lane


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

Предыдущее
От: Sondaar Roelof
Дата:
Сообщение: RE: Some questions about PLpgSql
Следующее
От: Michael Davis
Дата:
Сообщение: RE: Help with UPDATE syntax