up vote 8 down vote favorite
2
share [g+] share [fb]

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 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.

link|improve this question

feedback

12 Answers

up vote 9 down vote accepted

Oracle:

group by nvl2(field, 'NOT NULL', 'NULL')

link|improve this answer
Sweet -- that's a nifty custom function. (More here: java2s.com/Code/Oracle/Char-Functions/… ) – Stewart Johnson Oct 27 '08 at 11:00
feedback

In MySQL you could do something like

SELECT 
    IF(ISNULL(processed_timestamp), 'NULL', 'NOT NULL') as myfield, 
    COUNT(*) 
FROM mytable 
GROUP BY myfield
link|improve this answer
feedback

In T-SQL (MS SQL Server), this works:

SELECT
  CASE WHEN Field IS NULL THEN 'NULL' ELSE 'NOT NULL' END FieldContent,
  COUNT(*) FieldCount
FROM
  TheTable
GROUP BY
  CASE WHEN Field IS NULL THEN 'NULL' ELSE 'NOT NULL' END
link|improve this answer
feedback

Try the following, it's vendor-neutral:

select
    'null    ' as type,
    count(*)   as quant
    from       tbl
    where      tmstmp is null
union all
select
    'not null' as type,
    count(*)   as quant
    from       tbl
    where      tmstmp is not null

After having our local DB2 guru look at this, 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 indexotherwise). 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.

link|improve this answer
This is a pretty large table -- hitting it twice like this is inefficient, no? – Stewart Johnson Oct 27 '08 at 10:55
No, actually (at least in DB2 which is the DB I use), this solution will be as fast as all the decode/nvl2-type ones - they all have to perform a full table scan (my solution will process the same number of records overall but in two groups) - index on timestamp field reqd in both cases. – paxdiablo Oct 27 '08 at 11:29
It'll be interesting to try this solution side-by-side with a vendor-specific one when I get to work tomorrow. – Stewart Johnson Oct 27 '08 at 12:10
I came here to post this solution, but Pax Diablo beat me to it. All the other solutions rely on converting the column to a string, which you are then counting. In this case, chances are you never even have to touch any rows, because all the information you care about is in the index. – Andy Lester Oct 27 '08 at 12:54
@Pax: I just came here by accident and noticed that this answer had a down-vote from me (I have no idea why I should have done this). Curiously, I was able to revert it to +1, even though it should have been much too old. Strange. – Tomalak Aug 10 '09 at 6:48
show 2 more comments
feedback

If it's oracle then you can do:

select decode(field,NULL,'NULL','NOT NULL'), count(*)
from table
group by decode(field,NULL,'NULL','NOT NULL');

I'm sure that other DBs allow for similar trick.

link|improve this answer
feedback

Stewart,

Maybe consider this solution. It is (also!) vendor non-specific.

SELECT count([processed_timestamp]) AS notnullrows, 
       count(*) - count([processed_timestamp]) AS nullrows 
FROM table

As for efficiency, this avoids 2x index seeks/table scans/whatever by including the results on one row. If you absolutely require 2 rows in the result, two passes over the set may be unavoidable because of unioning aggregates.

Hope this helps

link|improve this answer
feedback

Another MySQL method is to use the CASE operator, which can be generalised to more alternatives than IF():

SELECT CASE WHEN processed_timestamp IS NULL THEN 'NULL' 
            ELSE 'NOT NULL' END AS a,
       COUNT(*) AS n 
       FROM logs 
       GROUP BY a
link|improve this answer
IF() function works as well - if(processed_timestamp is null, 'null', 'not null') – Nouveau Oct 27 '08 at 11:05
feedback

I personally like Pax's solution, but if you absolutely require only one row returned (as I had recently), In MS SQL Server 2005/2008 you can "stack" the two queries using a CTE

with NullRows (countOf)
AS
(
    SELECT count(*) 
    FORM table 
    WHERE [processed_timestamp] IS NOT NULL
)
SELECT count(*) AS nulls, countOf
FROM table, NullRows
WHERE [processed_timestamp] IS NULL
GROUP BY countOf

Hope this helps

link|improve this answer
But then you're hitting the database twice -- inefficient. (Which must be why Pax deleted his solution.) – Stewart Johnson Oct 27 '08 at 11:06
Pretty big approcach for such a simple problem, isn't it? – Tomalak Oct 27 '08 at 11:07
You're only hitting the database twice if your database doesn't optimise it. Probably a safe assumption, but an assumption nonetheless. – Tanktalus Oct 27 '08 at 11:15
Pax deleted his solution because it started getting downvotes, despite being the only non-vendor specific solution :-). Probably better to have a comprehensive list of all the vendor-specific optimized solutions and readers can choose which one they want. – paxdiablo Oct 27 '08 at 11:15
Actually, I'll put it back and take the hits - interesting to see how many downvotes it gets.... – paxdiablo Oct 27 '08 at 11:17
show 2 more comments
feedback

[T-SQL]:

select [case], count(*) tally
from (
  select 
  case when [processed_timestamp] is null then 'null'
  else 'not null'
  end [case]
  from myTable
) a

And you can add into the case statement whatever other values you'd like to form a partition, e.g. today, yesterday, between noon and 2pm, after 6pm on a Thursday.

link|improve this answer
feedback
Select Sum(Case When processed_timestamp IS NULL
                         Then 1
                         Else 0
                 End)                                                               not_processed_count,
          Sum(Case When processed_timestamp Is Not NULL
                         Then 1
                         Else 0
                 End)                                                               processed_count,
          Count(1)                                                                total
From table

Edit: didn't read carefully, this one returns a single row.

link|improve this answer
feedback

If your database has an efficient COUNT(*) function for a table, you could COUNT whichever is the smaller number, and subtract.

link|improve this answer
feedback

In Oracle

SELECT COUNT(*), COUNT(TIME_STAMP_COLUMN)
FROM TABLE;

count(*) returns the count of all rows

count(column_name) returns the number of rows which are not NULL, so

SELECT COUNT(*) - COUNT(TIME_STAMP_COLUMN) NUL_COUNT,
                  COUNT(TIME_STAMP_COLUMN) NON_NUL_COUNT
FROM TABLE

ought to do the job.

If the column is indexed, you might end up with some sort of range scan and avoid actually reading the table.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.