在PostgreSQL中的任何列中查找具有NULL值的所有行

前端之家收集整理的这篇文章主要介绍了在PostgreSQL中的任何列中查找具有NULL值的所有行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有很多类似的问题,但没有一个解决这个问题. The closest one I could findsql Server提供了一个答案,但我正在寻找一种在Postgresql中执行此操作的方法.

如何只选择任何列中具有NULL值的行?

我可以很容易地得到所有的列名称

select column_name from information_schema.columns where table_name = 'A';

但是不清楚如何检查NULL值的多个列名.显然这不行:

select* from A where (
  select column_name from information_schema.columns where table_name = 'A';
) IS NULL;

my Googling没有任何有用的东西.

您可以使用NOT(< table> IS NOT NULL).

the documentation

If the expression is row-valued,then IS NULL is true when the row
expression itself is null or when all the row’s fields are null,while
IS NOT NULL is true when the row expression itself is non-null and all
the row’s fields are non-null.

所以:

SELECT * FROM t;
┌────────┬────────┐
│   f1   │   f2   │
├────────┼────────┤
│ (null) │      1 │
│      2 │ (null) │
│ (null) │ (null) │
│      3 │      4 │
└────────┴────────┘
(4 rows)

SELECT * FROM t WHERE NOT (t IS NOT NULL);
┌────────┬────────┐
│   f1   │   f2   │
├────────┼────────┤
│ (null) │      1 │
│      2 │ (null) │
│ (null) │ (null) │
└────────┴────────┘
(3 rows)
原文链接:https://www.f2er.com/postgresql/192195.html

猜你在找的Postgre SQL相关文章