Oracle中查询某字段不为空的SQL语句怎么写
假设表A有id,info两个字段,我要查询这个表里面的所有info不为空的数据应该怎么写SQL?...
假设表A有id,info两个字段,我要查询这个表里面的所有info不为空的数据应该怎么写SQL?
展开
9个回答
展开全部
sql中判断非空不能用等号,因为null在sql中被看作特殊符号,必须使用关键字 is和not
select * from A where info is not null
select * from A where info is not null
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
比如
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
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
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select id,info from 表名 where info is not null;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select id,info from A where info is not null;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询