Subject Re: [ib-support] Count value on field
Author Lucas Franzen
> select sum(d_imip)

If you have to stay with NULL in this field you have got to change your
SQL to:

SELECT SUM ( d_imip ) WHERE d_imip IS NOT NULL

Luc.