Try the following, it's vendor-neutral:
select 'null ', count(*) from tbl where tmstmp is null
union all
select 'not null', count(*) from tbl where tmstmp is not null
EDIT:
Just had
After having our local DB2 guru look at thisand , he concurs: none of the solutions presented to date (including this one) can avoid a full table scan (of the table if timestamp is not indexed, or of the index, if it is indexed). They all scan every record in the table exactly once.
All the CASE/IF/NVL2() solutions do a null-to-string conversion for each row, introducing unnecessary load on the DBMS. This solution does not have that problem.
