hi Team,
Am having a table with 100 columns, and 500 records,
in that some records values are NULL, i want to find out how many column are there with NULL records.
i want all NULL value column names.
eg :
col1 col2 col3
a NULL city
b YOK BHK
c LOK BTL
Output
col2,
col1, and col3 contains no NULL values, only col2 contains NULL, hence i want col2 as output.
Please help...