I'm looking for a query which will return me an extra column at the end of my current query which is the count of all columns within the return set which contain a null column. For example:
Col 1 - Col 2 - Col 3
A B 0
A NULL 1
NULL NULL 2
Is there a simple way to get this return set based on the row values rather than having to requery all the criteria which fetches the original rows?