发布网友 发布时间:2022-04-09 10:46
共3个回答
懂视网 时间:2022-04-09 15:08
一、单个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 后跟别名
oracle中if/else功能的实现的3种写法
标签:
热心网友 时间:2022-04-09 12:16
where (参数= a and sid is null ) or ( 参数 <> a and name = c )热心网友 时间:2022-04-09 13:34
sql中使用case when来判断。