有很多类似的问题,但没有一个解决这个问题.
The closest one I could find为sql 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).
原文链接:https://www.f2er.com/postgresql/192195.htmlIf 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)