sql查询不为空的字段
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql查询不为空的字段相关的知识,希望对你有一定的参考价值。
select * from table where content...........
如上,content 是text 类型字段,里面有的值为空值,有的为 null ,还有的是文本值,我想查询不为空值和null的语句怎么写?
我只能写出一半,如下:
select * from table where content if not null and content
后面的写不出来了,怎么写啊?
上面是is ,不是if ,写错
Oracle中查询某字段不为空的SQL语句怎么写
假设表A有id,info两个字段,我要查询这个表里面的所有info不为空的数据应该怎么写SQL?
sql中判断非空不能用等号,因为null在sql中被看作特殊符号,必须使用关键字 is和not
select * from A where info is not null
问题延展:不为空有2中种,不是空值 is not null 不是空格 <>""
参考技术A sql中判断非空不能用等号,因为null在sql中被看作特殊符号,必须使用关键字 is和notselect * from A where info is not null本回答被提问者采纳 参考技术B 比如
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 参考技术C select id,info from 表名 where info is not null; 参考技术D select id,info from A where info is not null;
以上是关于sql查询不为空的字段的主要内容,如果未能解决你的问题,请参考以下文章
数据库SQL语句查询表中不为空的字段的数量为5的SQL语句?