I'm trying to filter out rows, which have NULL values in every column. Since there are around 30 columns, it seems unfeasible to type them out 1 by 1. Is there a way I can do this for the entire table?
I tried something like this
SELECT *
FROM TABLE1
WHERE column1 IS NULL AND column2 IS NULL -- etc...
However this is very time consuming, going through all the columns manually; how can I filter out rows, which have all column values as NULL?