oracle存储过程中的if...elseif...else用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle存储过程中的if...elseif...else用法相关的知识,希望对你有一定的参考价值。
if ... then
...
elsif ... then
...
else
...
end if;
or
if ... then
...
else
...
end if;
or
if ... then
...
end if;
注:if后的条件不加括号
例子如下:
if p_fh <> ‘‘ then
p_strsql := p_strsql || ‘ and b.fh = p_fh‘;
end if;
以上是关于oracle存储过程中的if...elseif...else用法的主要内容,如果未能解决你的问题,请参考以下文章