作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在函数(postgresql)
中有一个临时表
create temporary table temp_table (
id serial
,breakup_id integer
,enquiry_id integer
,estimate_id integer
,customer_name CHARACTER VARYING
,month integer
,year integer
,amount numeric
) on commit drop;
我需要for循环
这个临时表来使用breakup_id
更新amount
列。如何在postgresql函数
中做到这一点?
最佳答案
如果您对金额值有一些复杂的逻辑,请使用
do
$$
declare _r record;
begin
for _r in (select * from temp_table) loop
update temp_table set amount='complicated calculated values' where id = _r.id;
end loop;
end;
$$
;
否则使用UPDATE temp_table set amount =/*简单值*/where id=..
最后 - 请记住临时表并不意味着保存数据 - 例如,您将无法使用其他后端从中读取数据......
关于sql - For循环遍历临时表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41954473/
我是一名优秀的程序员,十分优秀!