在oracle中怎么查询某一列为空或非空的所有记录?
Advertisement:
热门软件下载:
如上,谢谢。
推荐阅读
网友:w_tsinghua
为空
select * from tab where col1 is null;
不为空
select * from tab where col1 is not null;
热门软件下载:
如上,谢谢。
推荐阅读
为空
select * from tab where col1 is null;
不为空
select * from tab where col1 is not null;
相关评论