Update with aggregate subquery? - Mailing list pgsql-novice

From Steve Lefevre
Subject Update with aggregate subquery?
Date
Msg-id 468CF3B0.10309@osu.edu
Whole thread Raw
Responses Re: Update with aggregate subquery?  ("Josh Tolley" <eggyknap@gmail.com>)
List pgsql-novice
Hello all -

I'm trying to find a way to simply some code, and I have an idea that I
can't quite hatch. It might be too complex for SQL.

I'm trying to do something like

UPDATE first_table SET latitude = ( SELECT avg(lat) FROM another_table
GROUP BY another_table.first_table_id WHERE another_table.first_table_id
= first_table.id )

Basically I have to refer to the 'outside' table within the subselect --
the 'first_table.id' in the subselect. Is this possible?

The added wrinkle is that the table I am selecting from is the same
table in a self join! Would that add any problems?

pgsql-novice by date:

Previous
From: mike lane
Date:
Subject: how to get pg_dump in postgesql 8.2 to create inserts with E'....' for back slashes
Next
From: "Josh Tolley"
Date:
Subject: Re: Update with aggregate subquery?