show/hide this revision's text 3 deleted 7 characters in body; edited tags

I have a table that has a processed_timestamp column -- if a record has been processed then that field contains the datetime it was processed, otherwise it is null.

I want to write a query that returns two rows:

NULL        xx -- count of records with null timestamps
NOT NULL    yy -- count of records with non-null timestamps

Is that possible?

Update: The table is quite large, so efficiency is fairly important. I could just run two queries to calculate each total separately, but I want to avoid hitting the table twice if I can avoid it.

show/hide this revision's text 2 added 209 characters in body

I have a table that has a processed_timestamp column -- if a record has been processed then that field contains the datetime it was processed, otherwise it is null.

I want to write a query that returns two rows:

NULL        xx -- count of records with null timestamps
NOT NULL    yy -- count of records with non-null timestamps

Is that possible?

TIA!

Update: The table is quite large, so efficiency is fairly important. I could just run two queries to calculate each total separately, but I want to avoid hitting the table twice if I can avoid it.

show/hide this revision's text 1

How do I return my records grouped by NULL and NOT NULL?

I have a table that has a processed_timestamp column -- if a record has been processed then that field contains the datetime it was processed, otherwise it is null.

I want to write a query that returns two rows:

NULL        xx -- count of records with null timestamps
NOT NULL    yy -- count of records with non-null timestamps

Is that possible?

TIA!