首页 > 代码库 > oracle存储过程中的if...elseif...else用法

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用法