sql >> Database >  >> RDS >> PostgreSQL

Hoe alle rijen met een NULL-waarde in een kolom te vinden met PostgreSQL

U kunt NOT(<table> IS NOT NULL) . gebruiken .

Van de documentatie :

Dus:

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)



  1. psycopg2 (postgresql) installeren in virtualenv op Windows

  2. UPDATE indien bestaat anders INSERT in SQL Server 2008

  3. Maak geneste JSON-arrays met FOR JSON PATH

  4. Kan SQLEXPRESS niet verbinden met Laravel 5.6