Code:
select count(*) from result where reslt<>"A"
and resultant doesnt include null data. m very confused.
Kindly help me how to correct it.
thanks in advance
ACCESS 2007
WINDOW 7
select count(*) from result where reslt<>"A"
Select count(*) from result where nz(reslt,"A")<>"A"
Select count(*) from result where nz(reslt,"")<>"A"
Comment