Re: Simple SQL-syntax - Mailing list pgsql-sql

From Josh Berkus
Subject Re: Simple SQL-syntax
Date
Msg-id web-105344@davinci.ethosmedia.com
Whole thread Raw
In response to RE: Simple SQL-syntax  ("Robby Slaughter" <webmaster@robbyslaughter.com>)
List pgsql-sql
Robby,

> There's no FROM clause in an update statement. And second, you
> need to be careful to make sure all your tokens make sense. You
> had an extra "B" in the middle of your statement. Based on this:

Actually, Postgres *does* support UPDATE ... FROM.  I use it quite a
bit.  The syntax can be fussy, however.

The following is perfectly valid in Postgres, although not 100% ANSI-92
kosher:
UPDATE A SET 1 = B.2
FROM B
WHERE A.2 = B.2

Fredrik's problem may be simply the table reference after SET; that's
why I'd like to see his exact parse error message.

-Josh


______AGLIO DATABASE SOLUTIONS___________________________                                      Josh Berkus Complete
informationtechnology      josh@agliodbs.com  and data management solutions       (415) 565-7293 for law firms, small
businesses       fax 621-2533   and non-profit organizations.      San Francisco
 


pgsql-sql by date:

Previous
From: "Ross J. Reedstrom"
Date:
Subject: Re: Sequential select queries...??
Next
From: "Robert J. Sanford, Jr."
Date:
Subject: RE: user defined function question