Subject | Re: [ib-support] Count value on field |
---|---|
Author | Lucas Franzen |
Post date | 2002-03-20T13:48:23Z |
> 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.