Check for blanks in a row

wrightyrx7

Registered User.
Local time
Today, 01:06
Joined
Sep 4, 2014
Messages
104
Hi all,

I have a query with 11 fields. Is there a way i can check if any of the fields in a row is blank?

I was wondering if a count would work in some way?

Thanks in advance
Chris
 
run a query.
this query has IS NULL in every field criteria.
 
something like

Code:
 select *
 from mytable
 where fld1 is null or fld2 is null or fl3 is null....
 
Thanks Ranman, but this just pulled out records where all fields were null.

something like

Code:
 select *
 from mytable
 where fld1 is null or fld2 is null or fl3 is null....

This is what i wanted. Thanks CJ.
 

Users who are viewing this thread

Back
Top Bottom