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

From: hubert depesz lubaczewski <depesz(at)depesz(dot)com>
To: Joshua Farray <farray(at)gmail(dot)com>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #5850: UPDATE statement fails when using aliases
Date: 2011-01-26 18:26:45
Message-ID: 20110126182644.GA16967@depesz.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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(at)gmail(dot)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(at)depesz(dot)com / aim:depeszhdl / skype:depesz_hdl / gg:6749007

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Josh Berkus 2011-01-26 18:37:35 Re: Multicolun index creation never completes on 9.0.1/solaris
Previous Message Joshua Farray 2011-01-26 18:05:40 BUG #5850: UPDATE statement fails when using aliases