Help Please, How can I show the result where all column values are null? For example, I have a table like this: (There are 51 columns/fields in this table), I want to check each record and if the records have complete null for the ID, then that record should be the output.
ID | Col1 | Col2 | Col25 | Col50 |
---|---|---|---|---|
1 | ABC | Null | JAC | Null |
2 | Null | EFG | PQR | Null |
3 | Null | Null | Null | Null |
4 | HIJ | JQR | POT | MNO |
And I want my result to look like below:
ID | Col1 | Col2 | Col25 | Col50 |
---|---|---|---|---|
3 | Null | Null | Null | Null |