SELECT *
FROM table1
WHERE coalesce(column1, column2, column3) IS NULL;
U moet alle vereiste kolommen opsommen. (Ik moet bekennen dat dit een hack is en niet mag worden gebruikt in productiecode)
UPD
ALS u wilt controleren of ten minste een enkele kolom null is, moet u OR gebruiken:
SELECT *
FROM table1
WHERE column1 IS NULL or column2 IS NULL;