Oracle中查询某字段不为空或者为空的SQL语句怎么写

如题所述

select * from table t where t.name is null;
select * from table t where t.name is not null;
温馨提示:内容为网友见解,仅供参考
第1个回答  2017-08-07
is (not) null
第2个回答  2017-08-06
不为空 is not null
为空 is null
相似回答