这些日子经常接触oracle的存储过程,在里面有时要用到条件判断,if else 虽然简单,但是有些细节还是要注意的,下面就简要把其用法介绍一下:
if ... then
...
elsif ... then
...
else
...
end if;
or
if ... then
...
else
...
end if;
or
if ... then
...
end if;