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

2025-01-04 06:31:38
推荐回答(1个)
回答1:

select * from 表名 where 某字段 is not null;
查询某字段不为空。
select * from 表名 where 某字段 is null;
查询某字段为空。