在oracle中,可以利用select查詢語句配合“is”和“NULL”關鍵字來查詢空字段,NULL關鍵字用於表示空字段,語法為“select * from 表名where 字段名is NULL」。
本教學操作環境:Windows10系統、Oracle 11g版、Dell G3電腦。
oracle查詢為空的資料
where 字段名 is NULL
為空的屬於特殊值,這樣的語句查不出
select gysname,gysdl,gysxl from formtable_main_674 where gysdl=1 and gysxl=''
這情況我們用is來查詢
select gysname,gysdl,gysxl from formtable_main_674 where gysdl=1 and gysxl is null
推薦教學:《Oracle視頻教程》
以上是oracle怎麼查詢空字段的詳細內容。更多資訊請關注PHP中文網其他相關文章!