How do I return my records grouped by NULL and NOT NULL? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T06:56:26Z http://stackoverflow.com/feeds/question/239545 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/239545/how-do-i-return-my-records-grouped-by-null-and-not-null 6 How do I return my records grouped by NULL and NOT NULL? Stewart Johnson 2008-10-27T10:48:48Z 2009-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#239548 16 Answer by Stefan Gehrig for How do I return my records grouped by NULL and NOT NULL? Stefan Gehrig 2008-10-27T10:53:03Z 2008-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#239551 1 Answer by ADEpt for How do I return my records grouped by NULL and NOT NULL? ADEpt 2008-10-27T10:53:51Z 2008-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#239553 9 Answer by paxdiablo for How do I return my records grouped by NULL and NOT NULL? paxdiablo 2008-10-27T10:54:19Z 2009-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#239555 8 Answer by bwalliser for How do I return my records grouped by NULL and NOT NULL? bwalliser 2008-10-27T10:56:10Z 2008-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#239557 12 Answer by Tomalak for How do I return my records grouped by NULL and NOT NULL? Tomalak 2008-10-27T10:57:11Z 2008-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#239564 0 Answer by Tom for How do I return my records grouped by NULL and NOT NULL? Tom 2008-10-27T11:03:07Z 2008-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#239568 0 Answer by James Green for How do I return my records grouped by NULL and NOT NULL? James Green 2008-10-27T11:05:48Z 2008-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#239733 0 Answer by Unsliced for How do I return my records grouped by NULL and NOT NULL? Unsliced 2008-10-27T12:36:27Z 2008-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#239849 1 Answer by James Green for How do I return my records grouped by NULL and NOT NULL? James Green 2008-10-27T13:20:12Z 2008-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#239957 0 Answer by Aleksey for How do I return my records grouped by NULL and NOT NULL? Aleksey 2008-10-27T13:56:27Z 2008-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#242090 0 Answer by EvilTeach for How do I return my records grouped by NULL and NOT NULL? EvilTeach 2008-10-28T02:48:30Z 2008-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#242092 0 Answer by le dorfier for How do I return my records grouped by NULL and NOT NULL? le dorfier 2008-10-28T02:49:34Z 2008-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>