View Single Post
  #1 (permalink)  
Old 09-28-2006, 05:01 AM
ken du
 
Posts: n/a
Default T-SQL dialect question:

How do I batch check 30 fields for NULL?


I have say 30 fields and would like to batch check them for NULL in one SQL statement, is there a way? Or do I have to write something like the following for each single field:

select field1 from table1 where isnull(field1);
Reply With Quote

ANSWER(S):