sql 查询语句怎么判断一个字段为空

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 查询语句怎么判断一个字段为空相关的知识,希望对你有一定的参考价值。

例如:

select * from testTable  where lie  is null 

select * from testTable  where lie  =''

存储过程里面可以这样写:
 @CountryCode varchar(200)
if(@CountryCode='')  
    begin  
       
    end

参考技术A select * from 表名 where 字段名 is null

sql判断字段是不是为空

1、创建测试表,

create table test_null(id varchar2(20),value varchar2(20));

2、插入测试数据;

insert into test_null values(1,'123');

insert into test_null values(2,'abc');

insert into test_null values(3,'');

insert into test_null values(4,'456');

3、查询表中全量数据;select t.*, rowid from test_null t;

4、编写语句,查询表中value为空的记录;

   select t.*, rowid from test_null t where value is null;

参考技术A 啥意思?

sqlserver有isnull()函数的
select * from 表 where isnull(字段,‘’)=‘’就是空
select * from 表 where isnull(字段,‘’)<>‘’就不为空本回答被提问者和网友采纳
参考技术B sql server 中使用 is null 或 is not null 来处理列的空值。

语法为:
列名 is null (字段为空返回true ,不为空返回 false)
列名 is not null (字段为空返回false,不为空返回 true)

例:
select case when a is null then 1 else 0 end from aaa

语法大意:如果a列 为空显示1,不为空显示0
参考技术C ISNULL(字段,'')=''即为空
len(ISNULL(字段,''))>0不为空
select * from 表 where 字段 is null "找出字段为空的数据"
select * from 表 where 字段 is not null "找出字段不为空的数据"
参考技术D 查数据表中,tb_name字段为null的语句
select * from tablename where tb_name is null

以上是关于sql 查询语句怎么判断一个字段为空的主要内容,如果未能解决你的问题,请参考以下文章

如何用SQL语句来判断查询结果为空?

sql查询不为空的字段

sql 查询时有空值返回0怎么写

在查询SQL语句中为空或者不为空的字段应该怎么写?

sql判断字段是不是为空

在查询SQL语句中为空或不为空怎么写