How do I return my records grouped by NULL and NOT NULL? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T06:56:26Zhttp://stackoverflow.com/feeds/question/239545http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null6How do I return my records grouped by NULL and NOT NULL?Stewart Johnson2008-10-27T10:48:48Z2009-08-10T09:51:18Z
<p>I have a table that has a <code>processed_timestamp</code> column -- if a record has been processed then that field contains the datetime it was processed, otherwise it is null.</p>
<p>I want to write a query that returns two rows:</p>
<pre><code>NULL xx -- count of records with null timestamps
NOT NULL yy -- count of records with non-null timestamps
</code></pre>
<p>Is that possible?</p>
<p><strong>Update:</strong> 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.</p>
http://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null/239548#23954816Answer by Stefan Gehrig for How do I return my records grouped by NULL and NOT NULL?Stefan Gehrig2008-10-27T10:53:03Z2008-10-27T10:53:03Z<p>In MySQL you could do something like</p>
<pre><code>SELECT
IF(ISNULL(processed_timestamp), 'NULL', 'NOT NULL') as myfield,
COUNT(*)
FROM mytable
GROUP BY myfield
</code></pre>
http://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null/239551#2395511Answer by ADEpt for How do I return my records grouped by NULL and NOT NULL?ADEpt2008-10-27T10:53:51Z2008-10-27T10:53:51Z<p>If it's oracle then you can do:</p>
<pre><code>select decode(field,NULL,'NULL','NOT NULL'), count(*)
from table
group by decode(field,NULL,'NULL','NOT NULL');
</code></pre>
<p>I'm sure that other DBs allow for similar trick.</p>
http://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null/239553#2395539Answer by paxdiablo for How do I return my records grouped by NULL and NOT NULL?paxdiablo2008-10-27T10:54:19Z2009-08-10T07:04:11Z<p>Try the following, it's vendor-neutral:</p>
<pre><code>select 'null ', count(*) from tbl where tmstmp is null
union all
select 'not null', count(*) from tbl where tmstmp is not null
</code></pre>
<p>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 index, if it is indexed). They all scan every record in the table exactly once. </p>
<p>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.</p>
http://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null/239555#2395558Answer by bwalliser for How do I return my records grouped by NULL and NOT NULL?bwalliser2008-10-27T10:56:10Z2008-10-27T10:56:10Z<p>Oracle:</p>
<p>group by nvl2(field, 'NOT NULL', 'NULL')</p>
http://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null/239557#23955712Answer by Tomalak for How do I return my records grouped by NULL and NOT NULL?Tomalak2008-10-27T10:57:11Z2008-10-27T11:02:54Z<p>In T-SQL (MS SQL Server), this works:</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null/239564#2395640Answer by Tom for How do I return my records grouped by NULL and NOT NULL?Tom2008-10-27T11:03:07Z2008-10-27T11:03:07Z<p>Another MySQL method is to use the <a href="http://dev.mysql.com/doc/refman/5.0/en/control-flow-functions.html#operator_case" rel="nofollow"><code>CASE</code> operator</a>, which can be generalised to more alternatives than <code>IF()</code>:</p>
<pre><code>SELECT CASE WHEN processed_timestamp IS NULL THEN 'NULL'
ELSE 'NOT NULL' END AS a,
COUNT(*) AS n
FROM logs
GROUP BY a
</code></pre>
http://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null/239568#2395680Answer by James Green for How do I return my records grouped by NULL and NOT NULL?James Green2008-10-27T11:05:48Z2008-10-27T11:05:48Z<p>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</p>
<pre><code>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
</code></pre>
<p>Hope this helps</p>
http://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null/239733#2397330Answer by Unsliced for How do I return my records grouped by NULL and NOT NULL?Unsliced2008-10-27T12:36:27Z2008-10-27T12:36:27Z<p>[T-SQL]: </p>
<pre><code>select [case], count(*) tally
from (
select
case when [processed_timestamp] is null then 'null'
else 'not null'
end [case]
from myTable
) a
</code></pre>
<p>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. </p>
http://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null/239849#2398491Answer by James Green for How do I return my records grouped by NULL and NOT NULL?James Green2008-10-27T13:20:12Z2008-10-27T13:20:12Z<p>Stewart,</p>
<p>Maybe consider this solution. It is (also!) vendor non-specific.</p>
<pre><code>SELECT count([processed_timestamp]) AS notnullrows,
count(*) - count([processed_timestamp]) AS nullrows
FROM table
</code></pre>
<p>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.</p>
<p>Hope this helps</p>
http://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null/239957#2399570Answer by Aleksey for How do I return my records grouped by NULL and NOT NULL?Aleksey2008-10-27T13:56:27Z2008-10-27T14:04:30Z<pre><code>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
</code></pre>
<p>Edit: didn't read carefully, this one returns a single row.</p>
http://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null/242090#2420900Answer by EvilTeach for How do I return my records grouped by NULL and NOT NULL?EvilTeach2008-10-28T02:48:30Z2008-10-28T02:54:13Z<p>In Oracle</p>
<pre><code>SELECT COUNT(*), COUNT(TIME_STAMP_COLUMN)
FROM TABLE;
</code></pre>
<p>count(*) returns the count of all rows</p>
<p>count(column_name) returns the number of rows which are not NULL, so</p>
<pre><code>SELECT COUNT(*) - COUNT(TIME_STAMP_COLUMN) NUL_COUNT,
COUNT(TIME_STAMP_COLUMN) NON_NUL_COUNT
FROM TABLE
</code></pre>
<p>ought to do the job.</p>
<p>If the column is indexed, you might end up with some sort of range scan and avoid actually reading the table.</p>
http://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null/242092#2420920Answer by le dorfier for How do I return my records grouped by NULL and NOT NULL?le dorfier2008-10-28T02:49:34Z2008-10-28T02:49:34Z<p>If your database has an efficient COUNT(*) function for a table, you could COUNT whichever is the smaller number, and subtract.</p>