Hi All,
I have one table with more than 200 columns and millions of records but i want to check list of fields which are having only nulls,.if i use below query will get result but need to add all columns in where clause is there any way to find nulls.
Select * from table
where col1 is null or col2 is null
Thx