如 select id from student where description is null
否则查询结果会为空。
在使用pgsql时,想要取到某些字段不为空或者为空的数据,可以用以下方法:
1、不为空Select * From table Where id select * From table Where id!= 2、为空 Select * From table Where id='"
Select * From table Where IS NULL(id)
如果字段是类型是字符串,用 id=’'可以;如果是int型则用 IS NULL。
2.SQL Server 查询某个字段为空,没有内容select * from 表名 where 字段名 = ''
3.SQL Server 查询某个字段为NULL
select * from 表名 where 字段名 is null
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)