oracle decode函数

Posted cathy-blog

tags:

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

decode的几种用法
1:使用decode判断字符串是否一样
DECODE(value,if1,then1,if2,then2,if3,then3,...,else)
含义为
IF 条件=值1 THEN
    RETURN(value 1)
ELSIF 条件=值2 THEN
    RETURN(value 2)
    ......
ELSIF 条件=值n THEN
    RETURN(value 3)
ELSE
    RETURN(default)
END IF

---------------------
作者:weeknd
来源:CSDN
原文:https://blog.csdn.net/weeknd/article/details/71157044
版权声明:本文为博主原创文章,转载请附上博文链接!


















以上是关于oracle decode函数的主要内容,如果未能解决你的问题,请参考以下文章

oracle decode 在access中有别的函数能代替吗?

oracle中decode函数有啥用?

关于Oracle的decode函数

oracle decode函数用法

Oracle自我补充之Decode()函数使用介绍

Oracle decode函数