I assume that you are trying to find all rows that have at least one iS NULL column.
Let's say you have three columns - col1, col2, col3 in the table - table1. then you can write a query like
SELECT COUNT (*) FROM table1 WHERE col1 IS NULL OR col2 IS NULL OR col3 IS NULL.
If you have more columns, join them using OR
source share