how come I can't count nulls
select count([copper_drop])
from Structures
where Copper_Drop is null
-----------
0
Warning: Null value is eliminated by an aggregate or other SET operation.
(1 row(s) affected)
I have set SET ANSI_NULLS off and SET ANSI_NULLS on
with the same result.
Thanks
Simi
select count([copper_drop])
from Structures
where Copper_Drop is null
-----------
0
Warning: Null value is eliminated by an aggregate or other SET operation.
(1 row(s) affected)
I have set SET ANSI_NULLS off and SET ANSI_NULLS on
with the same result.
Thanks
Simi