sql >> Base de Datos >  >> RDS >> PostgreSQL

Cómo encontrar todas las filas con un valor NULL en cualquier columna usando PostgreSQL

Puede usar NOT(<table> IS NOT NULL) .

De la documentación :

Entonces:

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)