gpt4 book ai didi

sql - 如何使用 PostgreSQL 在任何列中查找所有具有 NULL 值的行

转载 作者:行者123 更新时间:2023-11-29 11:08:44 24 4
gpt4 key购买 nike

有许多略微相似的问题,但没有一个能准确解决这个问题。 “Find All Rows With Null Value(s) in Any Column ”是我能找到的最接近的一个,它为 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;

searching没有发现任何有用的东西。

最佳答案

您可以使用 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)

关于sql - 如何使用 PostgreSQL 在任何列中查找所有具有 NULL 值的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31034847/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com