I've got a rather large DB and I need to select the fields where they are null or defaulted.
For example:
Table: Table_A
Row #1234
name, mname, lname
[data] [data] [null]
I'd need a query to generalize this, so that I can select "lname", where it is NULL, or mname, or none based on its state.
--
I just need to SELECT all "NULL" or "FALSE" fields in a row, and return only those fields which are NULL or FALSE.