Oracle中的null

 1. 包含null的表达式都为null

 2. null永远!= null

  select  * from emp where comm=null     // error

  select  *   from emp where comm is null  

 3. nvl(filedName,0)         // 如果为空值时替换成另一个值(  nvl2 )

原文地址:https://www.cnblogs.com/jerry1209/p/4278517.html