本节内容:
oracle if...elseif...else语句的用法
语法结构:
if ... then
...
elsif ... then
...
else
...
end if;
或者:
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;