pgsql 为空的时间字段 怎么查询

pgsql 为空的时间字段 怎么查询,第1张

正确的写法是同mysq,使用 is null

如 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


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/10020168.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-04
下一篇 2023-05-04

发表评论

登录后才能评论

评论列表(0条)

保存