postgresql怎么查询不等于空的字段

在使用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。

推荐学习《云海天Python教程》。

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » postgresql怎么查询不等于空的字段