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

xiaoxiao2021-02-28  79

比如

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
转载请注明原文地址: https://www.6miu.com/read-50471.html

最新回复(0)