Re: BUG #5850: UPDATE statement fails when using aliases

Поиск
Список
Период
Сортировка
От hubert depesz lubaczewski
Тема Re: BUG #5850: UPDATE statement fails when using aliases
Дата
Msg-id 20110126182644.GA16967@depesz.com
обсуждение исходный текст
Ответ на BUG #5850: UPDATE statement fails when using aliases  ("Joshua Farray" <farray@gmail.com>)
Список pgsql-bugs
On Wed, Jan 26, 2011 at 06:05:40PM +0000, Joshua Farray wrote:
>
> The following bug has been logged online:
>
> Bug reference:      5850
> Logged by:          Joshua Farray
> Email address:      farray@gmail.com
> PostgreSQL version: 9.0.2
> Operating system:   Win7 x64
> Description:        UPDATE statement fails when using aliases
> Details:
>
> Make a table:
> > CREATE TABLE foos
> > (
> >   foo_id serial,
> >   foo_text varchar(255)
> > );
>
> Update the table using an alias:
> > UPDATE foos AS t
> > SET t.foo_text = '';
>
> Expected output:
> > UPDATE 0
>
> Actual output:
> > ERROR:  column "t" of relation "foos" does not exist
> > LINE 2: SET t.foo_text = '';
> >             ^

you don't need to and can't use alias on the left side in assignment.

proper query:
update foos as t
set foo_text = '';

this works even if you join another table that has foo_text column, as
update knows which table you're updating.

Best regards,

depesz

--
Linkedin: http://www.linkedin.com/in/depesz  /  blog: http://www.depesz.com/
jid/gtalk: depesz@depesz.com / aim:depeszhdl / skype:depesz_hdl / gg:6749007

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

Предыдущее
От: "Joshua Farray"
Дата:
Сообщение: BUG #5850: UPDATE statement fails when using aliases
Следующее
От: Josh Berkus
Дата:
Сообщение: Re: Multicolun index creation never completes on 9.0.1/solaris