oracle中if/else

Posted Leo_wlCnBlogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle中if/else相关的知识,希望对你有一定的参考价值。

1、标准sql规范

复制代码
一、单个IF
1、

if a=...  then
.........
end if;

2、

if a=... then
......
else
....
end if;

二、多个IF

if a=..  then
......
elsif a=..  then
....
end if;     
这里中间是“ELSIF”,而不是ELSE IF 。这里需要特别注意
复制代码

 

2、decode函数

DECODE的语法

DECODE(value,if1,then1,if2,then2,if3,then3,...,else)

表示如果value等于if1时,DECODE函数的结果返回then1,...,如果不等于任何一个if值,则返回else。


3、case when

case when a=\'1\'then \'xxxx\'
     when a=\'2\' then \'ssss\'
else
  \'zzzzz\' end as

注意点: 

1、以CASE开头,以END结尾 
2、分支中WHEN 后跟条件,THEN为显示结果 
3、ELSE 为除此之外的默认情况,类似于高级语言程序中switch case的default,可以不加 
4、END 后跟别名  

 
分类: DB-Oracle

以上是关于oracle中if/else的主要内容,如果未能解决你的问题,请参考以下文章

oracle中if/else

oracle中if/else的三种实现方式

带有 IF ELSE 语句的 ORACLE APEX 引导 CSS

FORALL Oracle 中的 IF ELSE 条件

oracle中if/else的3种写法

Oracle:在Oracle中选择带有If else的语句