Re: update help

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Carolyn Wong <carolyn(at)greatpacific(dot)com(dot)au>
Cc: "pgsql-sql(at)postgresql(dot)org" <pgsql-sql(at)postgresql(dot)org>
Subject: Re: update help
Date: 2001-01-18 03:18:59
Message-ID: 22930.979787939@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Carolyn Wong <carolyn(at)greatpacific(dot)com(dot)au> writes:
> I'd like to know what's the correct SQL statement to do the following:
> update t1 a
> set a.amount = sum(b.amount)
> from t2 b
> where a.id = b.id

Try

UPDATE t1 SET amount = (select sum(b.amount) from t2 b WHERE t1.id = b.id);

Or possibly you want

UPDATE t1 SET amount = (select sum(b.amount) from t2 b WHERE t1.id = b.id)
WHERE EXISTS (select * FROM t2 b WHERE t1.id = b.id);

depending on whether you mean to zero out any t1 rows that have no
matching rows in t2. Note that you cannot attach an alias name to the
target table, you have to use its real name in the subselects.

There was a thread about this very issue a few months ago, and IIRC
we decided that an aggregate in an UPDATE doesn't have well-defined
semantics. The SQL92 spec explicitly disallows it. Right now PG will
take it, but we probably do something pretty surprising :-(

regards, tom lane

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Carolyn Lu Wong 2001-01-18 03:58:37 Re: update help
Previous Message Tubagus Nizomi 2001-01-18 03:17:34 Re: update help