在oracle中,可以利用is關鍵字判斷資料是否為空,因為null在sql中被看作特殊符號,所以不能使用等號,語法為“select * from table where column is null” 。
本教學操作環境:Windows10系統、Oracle 11g版、Dell G3電腦。
oracle怎麼判斷資料是否為空
#oracle判斷一個欄位為空
例如
insert into table a (a1,b1)values("a1",'');
對於這種情況,因為表裡存的是'',其實是沒有內容的,要查詢這個字段,不能直接使用
select * from a where b1='';
sql中判斷非空不能用等號,因為null在sql中被看作特殊符號,必須使用關鍵字is和not
應該如此使用:
select * from A where b1 is null
或:
select * from A where b1 is not null
推薦教程:《Oracle教程》
以上是oracle怎麼判斷資料是否為空的詳細內容。更多資訊請關注PHP中文網其他相關文章!