块结构
块结构
-- Created on 2012/4/28 by CHOWMIN declare -- Local variables here i integer; begin -- Test statements here
end; |
条件逻辑
if 判断条件 then //... elsif 判断条件 then //... else //.... end if; |
循环语句
loop //循环体... exit when 循环结束条件 end if; |
注:exit when可以再循环体的任何地方
while 循环条件 loop //循环体... end loop; |
for 循环变量 in 循环上限..循环下限 loop //循环体... end loop; |