show/hide this revision's text 5 deleted 3 characters in body

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.

show/hide this revision's text 4 added 467 characters in body

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 our DB2 guru look at this and 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.

show/hide this revision's text 3 deleted 27 characters in body

Try the following. It's not the fastest but it is , 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
show/hide this revision's text 2 added 48 characters in body
show/hide this revision's text 1