如果在PostgreSQL中的for循环内

时间:2018-08-08 13:44:56

标签: postgresql for-loop if-statement

我有两个下表。

TABLE 1       TABLE 2
--------     --------
id            id
date          table1_id
total         subtotal
balance

table 1                     table 2
--------                    ---------
id  total  balance          id table1_id subtotal paid
1    20      10              1      1      5       5  
2    30      30              2      1      15      5
                             3      2      10      0
                             4      2      10      0
                             5      2      10      0

我必须在 table2 中添加付费列。所以任何人都可以帮助我将值添加到现有数据的新添加列中。我试图按如下所示编写过程,但由于postgres不允许在for循环中进行,因此无法执行。

CREATE OR REPLACE FUNCTION public.add_amountreceived_inbillitem() RETURNS void AS
$BODY$
DECLARE 
rec RECORD;
inner_rec RECORD;
distributebalance numeric;
tempvar numeric;
BEGIN
FOR rec IN select * from table1 
LOOP 
distributebalance = rec.balance;
FOR inner_rec IN(select * from table2 where table1_id = rec.id order by id limit 1) 
 tempvar = distributebalance - inner_rec.subtotal;
 if (distributebalance >0 and tempvar>=0) THEN 
    update table2 set paid = inner_rec.subtotal where id = inner_rec.id ;
    distributebalance =distributebalance-inner_rec.subtotal;
 else if( distributebalance >0 and tempvar<0 )THEN 
    update table2 set paid = distributebalance where id = inner_rec.id;
END IF;
END LOOP; 
END LOOP;
END; $BODY$
LANGUAGE plpgsql VOLATILE
COST 100;

先谢谢您了:)

1 个答案:

答案 0 :(得分:0)

Postgres确实允许循环使用IF语句。

问题在于,通过编写ELSE IF可以启动一个新的IF语句,因此您现在有2个打开的IF,而只有一个关闭的END IF。 plpgsql中的“适当” elseif是ELSIFELSEIF。因此,只需删除这些单词之间的空格即可。