How to update a table with the result of deleting rows in another table

Started by Hemil Ruparelover 5 years ago4 messagesgeneral
Jump to latest
#1Hemil Ruparel
hemilruparel2002@gmail.com

I am trying to delete orders for a given customer on a given date and add
the cost of those orders to credit for the customer.

So far, I came up with this:
```
with data as (
delete from orders
where customer_id = <customer id>
and date = '2020-10-05' returning price
), total as (
select sum(price) from data
)
update paymentdetail
set temp_credit = temp_credit + (select * from total)
where customer_id = <customer id>
```

which works. but is there a better way to update one table using the result
of deleting rows from another table given that I only want the aggregate of
the result?

#2Pankaj Jangid
pankaj@codeisgreat.org
In reply to: Hemil Ruparel (#1)
Re: How to update a table with the result of deleting rows in another table

On Tue, Oct 06 2020, Hemil Ruparel wrote:

with data as (
delete from orders
where customer_id = <customer id>
and date = '2020-10-05' returning price
), total as (
select sum(price) from data
)
update paymentdetail
set temp_credit = temp_credit + (select * from total)
where customer_id = <customer id>

Not sure about better way but will this also not work? I just removed
the second clause.

#+BEGIN_SRC sql
with data as (
delete from orders
where customer_id = <customer id>
and date = '2020-10-05' returning price
)
update paymentdetail
set temp_credit = temp_credit + (select sum(price) from data)
where customer_id = <customer id>
#+END_SRC

#3Alban Hertroys
haramrae@gmail.com
In reply to: Hemil Ruparel (#1)
Re: How to update a table with the result of deleting rows in another table

On 6 Oct 2020, at 7:37, Hemil Ruparel <hemilruparel2002@gmail.com> wrote:

I am trying to delete orders for a given customer on a given date and add the cost of those orders to credit for the customer.

So far, I came up with this:
```
with data as (
delete from orders
where customer_id = <customer id>
and date = '2020-10-05' returning price
), total as (
select sum(price) from data
)
update paymentdetail
set temp_credit = temp_credit + (select * from total)
where customer_id = <customer id>
```

which works. but is there a better way to update one table using the result of deleting rows from another table given that I only want the aggregate of the result?

Adding the customer id to your returning clause and using update..from could help:

with data as (
delete from orders
where customer_id = <customer id>
returning customer_id, price
), total as (
select customer_id, sum(price) as total_price
from data
group by customer_id
)
update paymentdetail
set temp_credit = temp_credit + total.total_price
from total
where customer_id = total.customer_id

You could also do this using subqueries instead of CTE’s, that may perform better as CTE’s act as optimisation fences.

Alban Hertroys
--
If you can't see the forest for the trees,
cut the trees and you'll find there is no forest.

#4Michael Lewis
mlewis@entrata.com
In reply to: Alban Hertroys (#3)
Re: How to update a table with the result of deleting rows in another table

Adding the customer id to your returning clause and using update..from
could help:

with data as (
delete from orders
where customer_id = <customer id>
returning customer_id, price
), total as (
select customer_id, sum(price) as total_price
from data
group by customer_id
)
update paymentdetail
set temp_credit = temp_credit + total.total_price
from total
where customer_id = total.customer_id

You could skip the "total" cte and just update the same rows repeatedly.
I'm not sure if the same row being repeatedly updated in the same statement
creates additional row versions or just updates the existing one.

...CTE’s act as optimisation fences.

It might be worth noting PG12 changes that behavior in simple cases where
the CTE is not recursive, not referenced more than once, and is side-effect
free.