Re: Help on update that subselects other records in table, uses joins - Mailing list pgsql-general

From Manfred Koizar
Subject Re: Help on update that subselects other records in table, uses joins
Date
Msg-id 7eedqvsgtssdvtv02sealgtg6vncmr9go0@email.aon.at
Whole thread Raw
In response to Re: Help on update that subselects other records in table, uses joins  (Jeff Kowalczyk <jtk@yahoo.com>)
Responses Re: Help on update that subselects other records in table, uses joins  (Michael Glaesemann <grzm@myrealbox.com>)
List pgsql-general
On Mon, 03 Nov 2003 11:57:18 -0500, Jeff Kowalczyk <jtk@yahoo.com>
wrote:
>Thanks for the suggestions everyone, however I'm still at the same
>underlying stopping point: the subselect in the SET clause returns
>multiple rows, and I don't know how to make it 'iterate' on each orderid
>in the specified customerinvoiceid without using a JOIN, which is itself
>apparently either not directly possible or complex.
>
>UPDATE ordercharges
>SET orderchargeasbilled = (expression)
>WHERE
>  ordercharges.orderchargecode = 'S&H' and
>  ordercharges.orderid=(SELECT orderid   (tried IN(SELECT...) as well)
>     FROM orders
>     WHERE customerinvoiceid = '54321');
>
>'expression' needs to get the orderchargeasbilled for the current orderid

The key point is that you have to deal with two instances of the
ordercharges table, one having orderchargecode = 'S&H' (this is the
one you want to update), the other one having orderchargecode = 'SALE'
which is where the values come from.

UPDATE ordercharges
   SET orderchargeasbilled = 0.065 * sale.orderchargeasbilled
  FROM orders AS o, ordercharges AS sale
 WHERE ordercharges.orderchargecode = 'S&H'
   AND ordercharges.orderid = o.orderid
   AND sale.orderchargecode = 'SALE'
   AND sale.orderid = o.orderid
   AND o.customerinvoiceid = '54321';

HTH.
Servus
 Manfred

pgsql-general by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: C functions quicker than Plpgsql?
Next
From: Carmen Gloria Sepulveda Dedes
Date:
Subject: Query to pg_stat_activity