Oracle空值处理函数
/************Oracle中NUL、NVL2 和NULLIF的用法***************/
NULL指的是空值,或者非法值。
1、NVL(expr1, expr2)函数
expr1为NULL,返回expr2;不为NULL,返回expr1。注意两者的类型要一致
eg:SELECT NVL(column,0) FROM DUAL --column的值为null,则显示为0
2、NVL2(expr1, expr2, expr3)
expr1不为NULL,返回expr2;为NULL,返回expr3。expr2和expr3类型不同的话,expr3会转换为expr2的类型
eg:SELECT NVL2(column,1,0) FROM DUAL --column的值不为null,则显示为1,若列名的值为null,则显示为0
3、NULLIF (expr1, expr2) ->expr1和expr2相等返回NULL,不等则返回expr1
相关推荐
Omega 2020-08-16
娜娜 2020-07-28
goodriver 2020-06-17
Justdoit00 2020-07-04
sunboy 2020-06-14
LuoXinLoves 2020-06-10
Justdoit00 2020-06-08
Justdoit00 2020-06-08
娜娜 2020-06-08
Justdoit00 2020-06-01
oraclemch 2020-05-30
bianxq 2020-05-16
sunboy 2020-02-20
ktyl000 2020-02-20
一昕之代码 2020-02-20
LuoXinLoves 2020-05-04
点滴技术生活 2020-04-27
oraclemch 2020-04-22
Carlos 2020-04-18