Oracle条件分支语句是我们经常需要用到的,下面就为您详细介绍Oracle条件分支语句的语法,如果您对此方面感兴趣的话,不妨一看。
Oracle条件分支语句用于依据特定的情况选择要执行的操作,PL/SQL提供了三种Oracle条件分支语句:if-then, if-then-else,if-then-elsif。
语法如下:
ifconditionsthen statements; [elseifconditionsthen statements;] [else statements;] endif;
1、if-then示例
用于执行单一条件判断,如果满足特定条件则会执行相应操作,如果不满足特定条件则退出条件分支语句。
declare v_countnumber; begin selectcount(*)intov_countfromcip_temps; if(v_count>0)then dbms_output.put_line('v_cont的值:'||v_count); endif; end; /
2、if-then-else示例 用于执行二重条件判断,如果满足特定条件则执行一组操作,如果不满足则执行另一组操作。
declare v_countnumber; begin selectcount(*)intov_countfromcip_temps; if(v_count>11)then dbms_output.put_line('v_cont的值:'||v_count); else dbms_output.put_line('v_count的值:'||v_count); endif; end; /
3、if-then-elsif示例 用于执行多重条件判断,如果满足特定条件1则执行***组操作,如果满足特定条件2则执行第二组操作,以此类推,如果都不满足特定条件则执行不满足条件的操作。
declare v_countnumber; begin selectcount(*)intov_countfromcip_temps; if(v_count>10)then dbms_output.put_line('if操作___v_cont的值:'||v_count); elsif(v_count=10)then dbms_output.put_line('elsif操作____v_count的值:'||v_count); else dbms_output.put_line('else操作____v_cout的值:'||v_count); endif; end; /
相关文章
标签:Oracle