I want to select columns from a table where the values of columns are NULL.
For example:
SELECT * FROM table1 WHERE column1 IS NULL;
the above query returns rows where column1 doesn't have any value.
But I want to return multiple columns(where column1,column2,....)
I want to use this in MYSQL