1. 程式人生 > >判斷一個欄位為null

判斷一個欄位為null

在oracle中判斷一個欄位為空不能使用關係運算符:

例如:select  *  from  ename!=null;

或select   *    from   ename=null;

這樣是查不出結果的。

我們可以使用:is  null  和 is  not   null  ( 也可以使用is  null對其求反:not   is   null)

select   *   from  ename is null;