oracle写一个,1-100之间,偶数的累加存储过程

oracle写一个,1-100之间,偶数的累加存储过程
2024-12-03 18:50:21
推荐回答(1个)
回答1:

declare 
i int;
s int;
begin
  i:=2;
  s:=0;
  while i<=100 
    loop
    s:=s+i;
    i:=i+2;
    end loop; 
dbms_output.put_line(s);
end;